Tags can't support 'namespace tr = std::tr1' or '::'

General questions regarding the usage of CodeLite
Loaden
CodeLite Enthusiast
Posts: 35
Joined: Sat May 02, 2009 1:56 pm
Contact:

Tags can't support 'namespace tr = std::tr1' or '::'

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.
User avatar
eranif
CodeLite Plugin
Posts: 6375
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Tags can't support 'namespace tr = std::tr1' or '::'

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
Make sure you have read the HOW TO POST thread
Post Reply