18 lines
320 B
C
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;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
}
|