removed serialize(const char*) method
This commit is contained in:
parent
cab3e508bb
commit
0157233b02
|
|
@ -20,7 +20,6 @@ public:
|
|||
void serialize(uint16_t &, const utils::field_attributes &) override;
|
||||
void serialize(uint32_t &, const utils::field_attributes &) override;
|
||||
void serialize(uint64_t &, const utils::field_attributes &) override;
|
||||
void serialize(const char *, const utils::field_attributes &) override;
|
||||
void serialize(std::string &, const utils::field_attributes &) override;
|
||||
void serialize(utils::null_type_t &, const utils::field_attributes &) override;
|
||||
|
||||
|
|
|
|||
|
|
@ -43,10 +43,6 @@ void identifier_statement_binder::serialize(uint64_t &value, const utils::field_
|
|||
stmt_.bind(index_, value);
|
||||
}
|
||||
|
||||
void identifier_statement_binder::serialize(const char *value, const utils::field_attributes &) {
|
||||
stmt_.bind(index_, value);
|
||||
}
|
||||
|
||||
void identifier_statement_binder::serialize(std::string &value, const utils::field_attributes &) {
|
||||
stmt_.bind(index_, value);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue