Other Parts Discussed in Thread: CODECOMPOSER
Hi everyone,
Has anyone experienced problems with CodeComposer Studio's support for the C++ Standard Library. Specifically with the "string" class. I have a project based on C++ and until now have used my home-grown solution for the string class (I had my reasons). Now that I'm trying to be a good citizen by using standard software, I seem to be having problems. I boiled it down to a simple example shown below:
//*****************************************************************************
//
//! @file test.cpp
//! Main entry point
//!
//! @date Created: 8/18/2011
//
//*****************************************************************************
#include <string>
//*****************************************************************************
//
//! @brief Simple program utilizing string class in the C++ Standard Library
//
//*****************************************************************************
int main(void)
{
string strTest("Test");
//
// Loop forever
//
for (;;) {
}
}