LIPH's C++ Codes
make_default.h
Go to the documentation of this file.
1#ifndef LIPH_LANG_MAKE_DEFAULT_H_
2#define LIPH_LANG_MAKE_DEFAULT_H_
3
4namespace liph {
5
6template <class T>
8 return T();
9}
10
11} // namespace liph
12
13#endif // LIPH_LANG_MAKE_DEFAULT_H_
Definition: algorithm.h:10
T make_default()
Definition: make_default.h:7