c++ - Code outlining bug with templates resulting in >> -
has noticed when c++ editor encounters >> brackets close template parameter list, c++ editor code outliner stops working code beyond line? solution works far put space between >> pair. here's code cut , paste in. can check it's showing odd behavior in vs install too? wondering if it's specific installation + selection of extensions. i'm using vs 2012 update 2:
#pragma once #include "precompiled.h" #include "common.h" template<typename t> class applicationframe : public cwindowimpl<applicationframe<t>, cwindow, cwintraits <ws_overlappedwindow | ws_visible>> { public: applicationframe() { } virtual ~applicationframe() { if ( m_hwnd ) { destroywindow(); } } };
Comments
Post a Comment