Issue After attempting to install strongloop, It threw a few warnings and errors. Command used to install was: npm install -g strongloop Errors: c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(336): error C2988: unrecognizable template declaration/definition [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\heapdump\build\addon.vcxproj] c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(336): error C2059: syntax error : ‘using’ [C:\Users\Yoel\AppData\Roaming\npm\node_modules\strongloop\node_modules\heapdump\build\addon.vcxproj] c:\users\yoel\.node-gyp\4.2.4\include\node\v8.h(576): error
Continue readingTag: visual-studio-2012
Highlight syntax of generic types in Visual Studio
Issue Take a look at the following code: public class MyClass<T> { … } Working with Java or C++ in eclipse, the T would be highlighted, as it is a generic template. How can I achieve this functionality in Visual
Continue readingVS2012 Editor + Resharper 9 – Holding Ctrl key gets current block highlighted
Issue In Visual Studio 2012, holding Ctrl key down without pressing other keys gets the current block highlighted after a bit less than one second: I have VS2012 with Resharper 9 (and Viasfora syntax highlight extension). I checked all fonts
Continue readingHow to enforce the 'override' keyword?
Issue Is there any way to enforce the usage of the C++11 override keyword in Visual C++ 2012? (i.e. if I forget to say override, then I want to get a warning/error.) Solution C++11 almost had what you want. Originally
Continue reading