[Cppcms-users] Small bug in cppcms::json::value at revision 1910.
Brought to you by:
artyom-beilis
From: Daniel V. <chi...@gm...> - 2011-08-15 20:55:37
|
The cppcms::json::value method bool value::is_null() const { return d->value().which()==json::is_undefined; } should be bool value::is_null() const { return d->value().which()==json::is_null; } Note json::is_null instead of json::is_undefined. Good bye. |