diff options
Diffstat (limited to 'src/uscxml/Message.h')
-rw-r--r-- | src/uscxml/Message.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Message.h b/src/uscxml/Message.h index 1964f1c..44358be 100644 --- a/src/uscxml/Message.h +++ b/src/uscxml/Message.h @@ -74,7 +74,7 @@ public: Data() : type(INTERPRETED) {} Data(const std::string& atom_, Type type_ = INTERPRETED) : atom(atom_), type(type_) {} - Data(const char* data, size_t size, const std::string& mimeType, bool adopt); + Data(const char* data, size_t size, const std::string& mimeType, bool adopt = false); Data(bool atom_) : type(INTERPRETED) { if (atom_) { atom = "true"; |