diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-15 17:16:26 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-15 17:16:26 +0300 |
commit | e6cdc6015d7b810dd3dd705b0872a93b18a64ae1 (patch) | |
tree | 8fe391eb27759038f781e27a5b0ec8c1d34053a6 /test/foobar.cpp | |
parent | lab_rat: decrease total symbol count (diff) | |
download | winapi-debug-e6cdc6015d7b810dd3dd705b0872a93b18a64ae1.tar.gz winapi-debug-e6cdc6015d7b810dd3dd705b0872a93b18a64ae1.zip |
lab_rat -> foobar
Diffstat (limited to '')
-rw-r--r-- | test/foobar.cpp (renamed from test/lab_rat.cpp) | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/lab_rat.cpp b/test/foobar.cpp index ed204b6..cdb8a97 100644 --- a/test/lab_rat.cpp +++ b/test/foobar.cpp @@ -1,4 +1,4 @@ -namespace lab_rat { +namespace foobar_ns { int exit_code = 1; @@ -14,8 +14,8 @@ int foo() { return bar() * 2; } -} // namespace lab_rat +} // namespace foobar_ns int main() { - return lab_rat::foo() * 2; + return foobar_ns::foo() * 2; } |