json/fwd: add exception forward declarations

This commit is contained in:
Danny Robson 2015-09-09 18:42:49 +10:00
parent 0e836b951f
commit ba4eb8cc45

View File

@ -27,6 +27,12 @@ namespace json {
class boolean;
class null;
}
struct error;
struct type_error;
struct parse_error;
struct schema_error;
struct key_error;
}
#endif