/
UCS
/
sqlite_orm
Обзор
Документация
Войти
/
UCS
/
sqlite_orm
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
dev/ast/excluded.h
20 строк
373 B
klaus triendl
Split method implementations to their respective header files
24 мар 2022, 22:32
24 мар 2022, 22:32
c2ac77b
Код
Авторство
О чём код?
#pragma once #include <utility> // std::move namespace sqlite_orm { namespace internal { template<class T> struct excluded_t { using expression_type = T; expression_type expression; }; } template<class T> internal::excluded_t<T> excluded(T expression) { return {std::move(expression)}; } }