Visual Studio "go to header file" not working with hpp files

The very convenient "Right-Click" option in "Visual Studio 2005" does not work if my header file is an .hpp file for this module; I deleted / rebuilt the intellisense file, but it still does not want to know. Is there a setting or something like that?

+7
c ++ visual-studio-2005
source share
1 answer

Is a filter for the hpp header folder included in your project?

You can check by right-clicking on the Header Files folder to go to the properties, and it should have something like h; hpp; hxx; hm; inl; inc; xsd defined in the Filter property.

This can sometimes be a dodgy feature of Visual Studio that I have discovered since upgrading to Visual Studio 2010 that it takes too much time to use the goto definition or goto declaration to such an extent that I completely stop using it in favor of just looking for a project or solution and select it from the output window.

+1
source share

All Articles