diff options
author | Jack Lloyd <[email protected]> | 2017-10-01 06:13:06 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-01 06:13:06 -0400 |
commit | 97193ee43de6843d5e8a6eac67f54a8c315f52bb (patch) | |
tree | a78c34ef7c38c590d7e709cfcbb7ed956ac35bca /src/tests/test_compression.cpp | |
parent | c868a71bdf77222f1700d3932d97d2a21e25b953 (diff) |
Use explicit :: or std:: to refer to functions in namespaces
Diffstat (limited to 'src/tests/test_compression.cpp')
-rw-r--r-- | src/tests/test_compression.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_compression.cpp b/src/tests/test_compression.cpp index 4cb9ece8b..04eb26200 100644 --- a/src/tests/test_compression.cpp +++ b/src/tests/test_compression.cpp @@ -58,7 +58,7 @@ class Compression_Tests final : public Test std::vector<Test::Result> run() override { std::vector<Test::Result> results; - const size_t text_len = strlen(text_str); + const size_t text_len = std::strlen(text_str); for(std::string algo : { "zlib", "deflate", "gzip", "bz2", "lzma" }) { |