pkgsrc/www/cppcms/patches/patch-src_json.cpp
joerg e0a449c957 Import cppcms-1.0.4:
CppCMS is a free high performance web development framework.
It uses modern C++ and a design borrowing heavily from frameworks
like Django or Java Servlets to handle very high load levels while
minimizing CPU and memory use.
2013-07-16 10:12:48 +00:00

13 lines
298 B
C++

$NetBSD: patch-src_json.cpp,v 1.1 2013/07/16 10:12:48 joerg Exp $
--- src/json.cpp.orig 2013-01-02 22:26:03.000000000 +0000
+++ src/json.cpp
@@ -785,7 +785,7 @@ namespace json {
bool parse_number()
{
is_ >> real;
- return is_;
+ return is_.good() || is_.eof();
}
};