summaryrefslogtreecommitdiffstats
path: root/tests/path_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
committerDavid Robillard <d@drobilla.net>2009-05-13 16:04:14 +0000
commitc0d0364c030688aa8bfe4ad8dcaa2cffed8c0d04 (patch)
treec559879d17437adfb1aae4fb5fb40bbe6ac2f983 /tests/path_test.cpp
parentf60b59b49df6bc298755d49e97bc329b6d6030a1 (diff)
downloadraul-c0d0364c030688aa8bfe4ad8dcaa2cffed8c0d04.tar.gz
raul-c0d0364c030688aa8bfe4ad8dcaa2cffed8c0d04.tar.bz2
raul-c0d0364c030688aa8bfe4ad8dcaa2cffed8c0d04.zip
Strip trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@1999 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'tests/path_test.cpp')
-rw-r--r--tests/path_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/path_test.cpp b/tests/path_test.cpp
index ac7ff2b..20d6705 100644
--- a/tests/path_test.cpp
+++ b/tests/path_test.cpp
@@ -23,7 +23,7 @@ main()
cerr << "Nameification:" << endl;
for (list<string>::iterator i = names.begin(); i != names.end(); ++i)
cerr << *i << " -> " << Path::nameify(*i) << endl;
-
+
cerr << endl;
cerr << Path("/foo/bar") << " parent = " << Path("/foo/bar").parent() << endl;
cerr << Path("/foo") << " parent = " << Path("/foo").parent() << endl;
@@ -34,7 +34,7 @@ main()
cerr << (Path("/").is_parent_of(Path("/foo"))) << endl;
cerr << (Path("/foo").is_parent_of(Path("/foo/bar"))) << endl;
cerr << !(Path("/foo").is_parent_of(Path("/foo2"))) << endl;
-
+
cerr << endl << endl << "Descendants..." << endl;
cerr << "/ /foo " << Path::descendant_comparator("/", "/foo") << endl;
cerr << "/foo /foo/bar " << Path::descendant_comparator("/foo", "/foo/bar") << endl;