diff options
author | lloyd <[email protected]> | 2014-02-13 15:09:31 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-13 15:09:31 +0000 |
commit | 9168b5747037b7cde74e3bb60ffce6bf27be910b (patch) | |
tree | 2c4408665ca27de7a96ab9c46a048363a34ad7a0 /src/tests/test_bigint.cpp | |
parent | 6af80db3b7697461e3f24d6ff7a306b1b9eea8a4 (diff) |
Cleanups
Diffstat (limited to 'src/tests/test_bigint.cpp')
-rw-r--r-- | src/tests/test_bigint.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/tests/test_bigint.cpp b/src/tests/test_bigint.cpp index b71e0af2d..87de4aff3 100644 --- a/src/tests/test_bigint.cpp +++ b/src/tests/test_bigint.cpp @@ -28,12 +28,6 @@ void strip_comments(std::string& line) line = line.erase(line.find('#'), std::string::npos); } -void strip_newlines(std::string& line) - { - while(line.find('\n') != std::string::npos) - line = line.erase(line.find('\n'), 1); - } - /* Strip comments, whitespace, etc */ void strip(std::string& line) { |