Skip to content
Snippets Groups Projects
Commit e00171f3 authored by René Fritze's avatar René Fritze
Browse files

fix copy paste fail in common.string

parent e964eda5
No related branches found
No related tags found
No related merge requests found
......@@ -50,7 +50,7 @@ TEST(StringTest, Tokenizer)
const vector<string> tokens_compressed = {"a", "t", "kk", "g"};
EXPECT_EQ(tokens_default, tokenize(msg, seps, boost::algorithm::token_compress_off));
EXPECT_EQ(tokens_compressed, tokenize(msg, seps, boost::algorithm::token_compress_on));
#if // HAS_LAMBDA_FUNCTIONS && HAS_STD_BEGIN_END
#if HAS_LAMBDA_FUNCTIONS && HAS_STD_BEGIN_END
const string num_msg("-1 2;;4");
vector<int> numbers_default = {-1, 2, 0, 4};
vector<int> numbers_compressed = {-1, 2, 4};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment