diff options
author | David Robillard <d@drobilla.net> | 2018-09-16 22:11:37 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2018-09-16 22:11:37 +0200 |
commit | 0c6bb92f3f59b6b86f3b7b56224677e79b2e6900 (patch) | |
tree | 40e3173eec8b493f22152372cc00782f2a076f92 /test/path_test.cpp | |
parent | 07396e8d23bb8724c5960b57aca33e08a97f4e52 (diff) | |
download | raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.tar.gz raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.tar.bz2 raul-0c6bb92f3f59b6b86f3b7b56224677e79b2e6900.zip |
Lint with clang-tidy
Diffstat (limited to 'test/path_test.cpp')
-rw-r--r-- | test/path_test.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/path_test.cpp b/test/path_test.cpp index 9391063..538a262 100644 --- a/test/path_test.cpp +++ b/test/path_test.cpp @@ -78,8 +78,7 @@ main() CHECK(!strcmp(Path("/").symbol(), "")); Path original(std::string("/foo/bar")); - Path copy(original); - CHECK(original == copy); + CHECK(original == Path(original)); bool valid = true; try { |