فهرست منبع

Fixed SerializableJSONInteger class

- made ISerializable interface public inside class
Patrick 4 سال پیش
والد
کامیت
ac3424dd01
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      source/serialization/boxing/SerializableJSONInteger.hpp

+ 2 - 2
source/serialization/boxing/SerializableJSONInteger.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2020-08-21
- * Changed:         2020-08-21
+ * Changed:         2020-08-22
  *
  * */
 
@@ -16,7 +16,7 @@
 #include <json.hpp>
 
 namespace ls_std {
-  class SerializableJSONInteger : public Class, ISerializable {
+  class SerializableJSONInteger : public Class, public ISerializable {
     public:
 
       explicit SerializableJSONInteger(std::shared_ptr<ls_std::Integer> _integer);