Replaced set() by operator=()

This commit is contained in:
Benoit Blanchon
2014-07-31 19:48:51 +02:00
parent 2c29327ebd
commit 7877ee1b4c
4 changed files with 11 additions and 11 deletions

View File

@ -89,7 +89,7 @@ namespace JsonGeneratorTests
{
StringBuilder sb(buffer, sizeof(buffer));
JsonValue jsonValue;
jsonValue.set(value);
jsonValue = value;
returnValue = jsonValue.printTo(sb);
}