‘IsBaseOf’ is not a member of ‘ArduinoJson::TypeTraits’
Created by: Siapran
I'm attempting to compile the header from the latest release, with g++ (GCC) 6.3.1 on a 64bit linux, using C++98 standard (because I'll need to port the code to another esoteric equipment which runs a 2.6 linux kernel... so no C++11).
When attempting to compile the following code:
#include "ArduinoJson.h"
int main(int argc, char const *argv[])
{
/* code */
return 0;
}
the compilation fails with these errors.
My attempts at reading the source didn't get me very far.