Gobelijn API documentation  - generated for commit a0cbea7
 All Classes Namespaces Files Functions Variables Typedefs Friends Macros Pages
max1.hpp
Go to the documentation of this file.
1 #pragma once
2 
8 template <typename T>
9 inline T const& max(T const& a, T const& b)
10 {
11  return a < b ? b : a;
12 }
13 
T const & max(T const &a, T const &b)
Definition: max1.hpp:9