[VS 2010 C++] Strange behavior including boost

Started by
12 comments, last by Rattrap 12 years, 9 months ago
do you think they could be causing the problem of the program doing nothing?
if so what would I be looking for that indicates CLI?
I'm unfamiliar with the language, but taking a quick google it seems similar to C# (with that being the coding language I'm most familiar with its plausible I used similar code in C++ by mistake)
Advertisement

do you think they could be causing the problem of the program doing nothing?
if so what would I be looking for that indicates CLI?
I'm unfamiliar with the language, but taking a quick google it seems similar to C# (with that being the coding language I'm most familiar with its plausible I used similar code in C++ by mistake)


It's basically a modified version of C++ that uses the .Net Common Language Runtime. Check your project files (Right click on the Project and choose Properties). Check under General -> Common Language Runtime Support and see if it says Common Language Runtime Support /clr (see picture below)

[attachment=4226:VS2010CLR.png]


If it is there, try changing it to No Common Language Runtime Support.

"I can't believe I'm defending logic to a turing machine." - Kent Woolworth [Other Space]

thanks loads!
Everything builds and runs fine now :D
Good to hear.

Be sure to check this under the Release settings too, as Release may still be set to CLR enabled.

"I can't believe I'm defending logic to a turing machine." - Kent Woolworth [Other Space]

This topic is closed to new replies.

Advertisement