utils.hpp

来自「LiteSQL is a C++ library that integrates」· HPP 代码 · 共 21 行

HPP
21
字号
/* LiteSQL  *  * By Tero Laitinen  *  * See LICENSE for copyright information. *//** \file utils.hpp    includes string.hpp and split.hpp */#ifndef _litesql_utils_hpp#define _litesql_utils_hpp#include <assert.h>#include "litesql/string.hpp"#include "litesql/split.hpp"namespace litesql {template <class T>const T& min(const T& v1, const T& v2) {    return (v1 < v2) ? (v1) : (v2);}}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?