summaryrefslogtreecommitdiff
path: root/modules/codec/c++/schema_stringify.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/codec/c++/schema_stringify.hpp')
-rw-r--r--modules/codec/c++/schema_stringify.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/codec/c++/schema_stringify.hpp b/modules/codec/c++/schema_stringify.hpp
index 05978e3..797823a 100644
--- a/modules/codec/c++/schema_stringify.hpp
+++ b/modules/codec/c++/schema_stringify.hpp
@@ -36,21 +36,21 @@ struct schema_stringify<schema::Primitive<T,N>> {
template<>
struct schema_stringify<schema::SignedInteger> {
static void apply(std::stringstream& iss) {
- iss << "saw:schema::SignedInteger";
+ iss << "saw::schema::SignedInteger";
}
};
template<>
struct schema_stringify<schema::UnsignedInteger> {
static void apply(std::stringstream& iss) {
- iss << "saw:schema::UnsignedInteger";
+ iss << "saw::schema::UnsignedInteger";
}
};
template<>
struct schema_stringify<schema::FloatingPoint> {
static void apply(std::stringstream& iss) {
- iss << "saw:schema::FloatingPoint";
+ iss << "saw::schema::FloatingPoint";
}
};