#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;
};
}