/
UCS
/
sqlite_orm
Обзор
Документация
Войти
/
UCS
/
sqlite_orm
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
dev/literal.h
17 строк
337 B
klaus triendl
Resolved review suggestions of 'order by kth column'
02 апр 2022, 10:19
02 апр 2022, 10:19
faed41a
Код
Авторство
О чём код?
#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; }; } }