Tool/software: TI C/C++ Compiler
Dear Sirs:
I know that the TI compiler only support c++03 and c++98
http://processors.wiki.ti.com/index.php/C%2B%2B_Support_in_TI_Compilers#Status_as_of_March_2014
However, our provider uses C++ STL vector, and they heavily uses the std:vector::data() which is only available in C++11 for their algorithm.
And our provider only use the simple type like char, int, long etc. in the vector.
I read the vector implementation in CGT6X v8.0.3, and make sure there is no data implementation inside it.
However after reading the implementation, just thought, if it is possible to use the iterator memory returned by std::vector::begin() if only simple type is used.
If we can not use std::vector::begin() , then is there any simple solution that can make us use of the function std:vector::data()?
Regards,
/ckhsu