Cleaned up and fixed some errors in the Json Parser.
This commit is contained in:
@@ -7,14 +7,14 @@
|
||||
|
||||
namespace ehs
|
||||
{
|
||||
class EHS_LIB_IO JsonBool : public JsonBase
|
||||
class EHS_LIB_IO JsonBool final : public JsonBase
|
||||
{
|
||||
public:
|
||||
bool value;
|
||||
|
||||
JsonBool();
|
||||
|
||||
JsonBool(const bool value);
|
||||
JsonBool(bool value);
|
||||
|
||||
JsonBool(const JsonBool& jb) = default;
|
||||
|
||||
@@ -22,6 +22,6 @@ namespace ehs
|
||||
|
||||
operator bool&();
|
||||
|
||||
Str_8 ToStr(const UInt_64 level, const bool compact) const;
|
||||
Str_8 ToStr(UInt_64 level, bool compact) const override;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user