Blame | Last modification | View Log | Download | RSS feed
Someone is writing C in C++ in libjson, and not declaring it correctly.Can you please addusing namespace std;to the top of RJSONIO/src/libjson/Source/JSONChildren.hto get memmove etc into scope.The remaining problem,"libjson/Source/NumberToString.h", line 130: Error: The function "snprintf" must have a prototype.is trickier as snprintf is not a C++ and not a C90 function, and indeed the Solaris C++ headers seem to have vsnprintf but not snprintf. So that file needs to have#ifdef __SUNPRO_CC#include <stdio.h>#else#include <cstdio>#endif