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 6a2089a commit d2b6926Copy full SHA for d2b6926
BSON.h
@@ -191,6 +191,10 @@ class BSON : private gtl::stack_uniq<uint8_t> {
191
BSON_MAKE_ADD_STR(const String&)
192
// BSON_MAKE_ADD_STR(const StringSumHelper&)
193
194
+ BSON& add(const StringSumHelper&) = delete;
195
+ inline void operator=(const StringSumHelper&) = delete;
196
+ inline void operator+=(const StringSumHelper&) = delete;
197
+
198
// ============== val bin ==============
199
bool beginBin(uint16_t size) {
200
if (size > BS_MAX_LEN) return false;
library.properties
@@ -1,5 +1,5 @@
1
name=BSON
2
-version=2.0.2
+version=2.0.3
3
author=AlexGyver <alex@alexgyver.ru>
4
maintainer=AlexGyver <alex@alexgyver.ru>
5
sentence=Binary JSON packet builder for Arduino
0 commit comments