General questions regarding the usage of CodeLite
-
Loaden
- CodeLite Enthusiast
- Posts: 35
- Joined: Sat May 02, 2009 1:56 pm
-
Contact:
Post
by Loaden »
Code: Select all
#include <windows.h>
#include <iostream>
#include <vector>
#include <map>
#include <tr1/memory>
namespace tr = std::tr1;
int main(int argc, char **argv)
{
std::vector<int> v;
std::string s;
s.push_back(1);
std::tr1::shared_ptr< // it's work fine!
tr:: // it's dont work!
::Mess // it's not work.
MessageBox(NULL, "test", "ok", MB_YESNO); // work fine
return 0;
}
I hope CL can support it. Thanks.
-
eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
-
Contact:
Post
by eranif »
Indeed, both are not supported.
Hopes are a good thing
, but you should probably submit a feature request here:
http://sourceforge.net/tracker/?group_id=202033
Thanks,
Eran