0_0_38354512_13385.cpp: In instantiation of 'static T SegmentTree<type, maxLen, T>::op(T, T) [with int type = 2; int maxLen = 100000; T = int]':
0_0_38354512_13385.cpp:39:47: required from 'void SegmentTree<type, maxLen, T>::build(int, int, int) [with int type = 2; int maxLen = 100000; T = int]'
0_0_38354512_13385.cpp:12:16: required from 'void SegmentTree<type, maxLen, T>::build(int) [with int type = 2; int maxLen = 100000; T = int]'
0_0_38354512_13385.cpp:93:19: required from here
0_0_38354512_13385.cpp:27:30: error: 'min' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
return type == 1 ? min(a, b) : max(a, b);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_38354512_13385.cpp:71:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:240:5: note: 'template<class _Tp, class _Compare> const _Tp& std::min(const _Tp&, const _Tp&, _Compare)' declared here, later in the translation unit
min(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
0_0_38354512_13385.cpp:27:42: error: 'max' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive]
return type == 1 ? min(a, b) : max(a, b);
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_38354512_13385.cpp:71:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:261:5: note: 'template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)' declared here, later in the translation unit
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
|