Hi,
I'm using ti_cgt_tiarmclang_2.1.2.LTS.
I have C++ code:
#include <type_traits>
template <typename T, const T VALUE>
struct integral_constant : std::integral_constant<T, VALUE> {};
but I get an error:
error: reference to 'std' is ambiguous
What am I missing here ?
Thanks,
Eli