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

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -