discord-bot/libs/sqlite_orm-1.8.2/dev/literal.h

18 lines
320 B
C++

#pragma once
namespace sqlite_orm {
namespace internal {
/*
* Protect an otherwise bindable element so that it is always serialized as a literal value.
*/
template<class T>
struct literal_holder {
using type = T;
type value;
};
}
}