summaryrefslogtreecommitdiff
path: root/libodb-mysql/odb/mysql/enum.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'libodb-mysql/odb/mysql/enum.cxx')
-rw-r--r--libodb-mysql/odb/mysql/enum.cxx28
1 files changed, 28 insertions, 0 deletions
diff --git a/libodb-mysql/odb/mysql/enum.cxx b/libodb-mysql/odb/mysql/enum.cxx
new file mode 100644
index 0000000..1e53b29
--- /dev/null
+++ b/libodb-mysql/odb/mysql/enum.cxx
@@ -0,0 +1,28 @@
+// file : odb/mysql/enums.cxx
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <cstring> // std::memmove
+#include <cassert>
+
+#include <odb/mysql/enum.hxx>
+
+namespace odb
+{
+ namespace mysql
+ {
+ void enum_traits::
+ strip_value (const details::buffer& i, unsigned long& size)
+ {
+ char* d (const_cast<char*> (i.data ()));
+
+ unsigned long p (0);
+ for (; p < size && d[p] != ' '; ++p) ;
+ assert (p != size);
+
+ p++; // Skip space;
+ size -= p;
+
+ std::memmove (d, d + p, size);
+ }
+ }
+}