diff options
author | Howard Stearns <howard.stearns@gmail.com> | 2022-06-13 14:03:04 -0700 |
---|---|---|
committer | Howard Stearns <howard.stearns@gmail.com> | 2022-06-13 14:03:04 -0700 |
commit | 9d9c2037e10966bdf4b07ef3fed081c04a4ed30a (patch) | |
tree | 2650993a565233f5995e6abe44f14d48d48619ac /indra/test/test.cpp | |
parent | 91a9665e35a3bfeb5a2bc81586a23e70bb2c7596 (diff) | |
parent | c9a48a1cdd23a592eb25454d5e2d6c316ec93445 (diff) |
Merge branch 'DRTVWR-564' of bitbucket.org:lindenlab/viewer into SL-17485
Diffstat (limited to 'indra/test/test.cpp')
-rw-r--r-- | indra/test/test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp index bb48216b2b..28f25087ac 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -401,7 +401,7 @@ public: { // Per http://confluence.jetbrains.net/display/TCD65/Build+Script+Interaction+with+TeamCity#BuildScriptInteractionwithTeamCity-ServiceMessages std::string result; - BOOST_FOREACH(char c, str) + for (char c : str) { switch (c) { |