We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 793a6bd commit 7ffab7eCopy full SHA for 7ffab7e
include/behaviortree_cpp/json_export.h
@@ -51,6 +51,10 @@ class JsonExporter
51
public:
52
static JsonExporter& get();
53
54
+ // Delete copy constructors as can only be this one global instance.
55
+ JsonExporter& operator=(JsonExporter&&) = delete;
56
+ JsonExporter& operator=(JsonExporter&) = delete;
57
+
58
/**
59
* @brief toJson adds the content of "any" to the JSON "destination".
60
*
0 commit comments