Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
2answers
7k views

Should I add the vcxproj.filter files to source control

While evaluating Visual Studio 2010 Beta 2, I see that in the converted directory my vcproj files have become vcxproj files. There are also vcxproj.filter files alongside each project which appear to ...
27
votes
3answers
16k views

Visual Studio Express 2010 license

Can I use Visual C++ 2010 Express compiler for commercial use? As far as I know, it was always permitted prior to 2010 version, but now when I start IDE, it writes "For Evaluation Purposes Only". I ...
11
votes
3answers
4k views

Visual C++ 2010 Express: How to use with Qt?

I'm confused about getting Qt working with Visual Studio Express. Most of the searches online have turned up instructions for compiling Qt using instructions such as: Install MSVC2005 or ...
9
votes
2answers
344 views

Watching a C++ array in Visual Studio

I have declared an array as follows: int *arr; Is there any way in visual studio to watch all the elements of the array while debugging, rather than having to manually place watch for an element ...
9
votes
3answers
826 views

Closure and nested lambdas in C++0x

Using C++0x, how do I capture a variable when I have a lambda within a lambda? For example: std::vector<int> c1; int v = 10; <--- I want to capture this variable std::for_each( ...
9
votes
2answers
586 views

Unable to instantiate function templates which uses decltype to deduce return type, if called from inside a lambda?

I'm trying to use C++0x, and in particular lambda expression and decltype to simplify some of my code, using the MSVC10 RC compiler. I've run into the following very odd problem: template ...
8
votes
3answers
3k views

Visual Studio 2010's strange “warning LNK4042”

I've just been beaten (rather hardly) on the head by some non-trivial warning from Visual Studio 2010 (C++). The compilation gave the following output: 1 Debug\is.obj : warning LNK4042: object ...
7
votes
3answers
177 views

compiler stack overflow on template code

While working on my own type erasure iterator, I ran into an issue where the compiler (MSVC10) crashed with a stack overflow on this code: struct base {}; //In actual code, this is a template struct ...
7
votes
3answers
685 views

Disabling C++0x features in VC 2010?

Does C++0x mode in VC++ 2010 has an off switch? I am working on a project that supposed to compile on non 0x compilers, and therefore I want to compile against the current standard. (Even if non of ...
7
votes
3answers
605 views

What's missing from Visual C++ 2010 Express? [closed]

Possible Duplicate: What is “missing” in the Visual Studio Express Editions? Specifically for 2010, specifically for C++... what's missing Vs Professional/Premium (annoying the ...
7
votes
1answer
3k views

initializer_list not working in VC10

hi i wrote this program in VC++ 2010: class class1 { public: class1 (initializer_list<int> a){}; int foo; float Bar; }; void main() { class1 c = {2,3}; getchar(); } but i get this errors ...
7
votes
2answers
408 views

How does switch compile and how optimized and fast is it?

As I found out that I can use only numerical values in C++'s switch statements, I thought that there then must be some deeper difference between it and a bunch of if-else's. Therefore I asked myself: ...
6
votes
1answer
159 views

C++, ambiguous inheritance error in vs 2010

I have some troubles with the application of polymorphism in this example. This question is similar to my last question C++, virtual inheritance, strange abstract class + clone problem There are 3 ...
6
votes
2answers
630 views

Why does VC++ 2010 compiler crash when compiling simple code?

I encountered a very strange symptom. Who can tell me what the root cause is? My VC++ compiler version is latest: "Microsoft Visual C++ 2010 : 01019-532-2002102-70860" Steps to reproduce: Create ...
6
votes
2answers
869 views

C++0x Lambda overhead

Is there any overhead associated with using lambda expressions in C++0x (under VS2010)? I know that using function objects incurs overhead, but I'm referring to expressions that are passed to STL ...
5
votes
1answer
125 views

Syntax error in template class with lambda expression

I have the following simplified scenario: template< typename T> struct A { A() : action_( [&]( const T& t) { }) {} private: boost::function< void( const T& )> action_; ...
5
votes
2answers
892 views

The g++'s -g option equivalent to VS2010 cl compiler?

With g++ with -g option, I can use gdb for debugging purposes. What's the equivalent to this option with Visual Studio 2010 cl.exe compiler? This page has different libraries (debug/release) for ...
5
votes
4answers
1k views

lambda expression (MSVC++ vs g++)

I have the following code #include <algorithm> #include <iostream> #include <vector> #include <functional> int main() { typedef std::vector<int> Vector; int ...
4
votes
1answer
334 views

How do you use the pause assembly instruction in 64-bit C++ code?

Since inlined assembly is not supported by VC++ 2010 in 64-bit code, how do I get a pause x86-64 instruction into my code? There does not appear to be an intrinsic for this like there is for many ...
4
votes
2answers
443 views

Visual C++ 2010, rvalue reference bug?

Is it a bug in Visual C++ 2010 or right behaviour? template<class T> T f(T const &r) { return r; } template<class T> T f(T &&r) { static_assert(false, "no way"); ...
4
votes
2answers
1k views

How to generate random numbers in C++ using <random> header members?

I learned to program in C# and have started to learn C++. I'm using the Visual Studio 2010 IDE. I am trying to generate random numbers with the distribution classes available in <random>. For ...
4
votes
1answer
1k views

How to Link to a .lib file in Visual C++ 2010? Without referencing the project?

I just have a problem that I have been trying to fix for the longest time. I have a static library project in visual c++, and I want another project to be able to link to it. Up until now, I have ...
4
votes
3answers
218 views

STL on custom OS - std::list works, but std::vector doesn't

I'm just playing around with a grub-bootable C++ kernel in visual studio 2010. I've gotten to the point where I have new and delete written and things such as dynamically allocated arrays work. I ...
4
votes
1answer
420 views

Dependent Non-Type Template Parameters

Consider the following class: class Foo { enum Flags {Bar, Baz, Bax}; template<Flags, class = void> struct Internal; template<class unused> struct Internal<Bar, unused> {/* ...
3
votes
2answers
122 views

Notify Icon Receives WM_LBUTTONDBLCLK But Not WM_CONTEXTMENU

I added a notification icon to my dialog based application, and it received WM_LBUTTONDBLCLK when the icon is double clicked on, but it is not receiving WM_CONTEXTMENU when the icon is right clicked ...
3
votes
2answers
103 views

ceil works without including <cmath> in visual c++ 2010

I just wrote a simple C++ program in Visual Studio 2010 and I use ceil function. But I forgot to include the <cmath> and only included the <iostream>. Surprisingly my code compiled ...
3
votes
5answers
83 views

Issue with Pointers (Only in Release Build)

unsure how to go about describing this but here i go: For some reason, when trying to create a release build version of my game to test, the enemy creation aspect of it isn't working. Enemies ...
3
votes
2answers
146 views

RValue, template resolution and copy constructors (in Visual C++ 2010)

I'm constructing a simple container class but run into some problems (reassembling the ones in Visual C++ 2010, rvalue reference bug?) #include <cassert> #include <utility> ...
3
votes
3answers
288 views

Behavior of decltype

Say I have an object of some of stl container classes obj. I can define other object of same type this way: decltype(obj) obj2; But I can't declare iterator for the container this way: ...
3
votes
1answer
780 views

How can I use gnu-flex & bison in Visual Studio 2010?

I've read http://msdn.microsoft.com/en-us/library/aa730877%28vs.80%29.aspx but this document was for VS 2005. I stuck on the part 'Importing a .rules File in Visual C++' in the document. It seems that ...
3
votes
2answers
768 views

C++ MultiThreading with visual studio express 2010 Forms Application

I am developing a Windows forms application which connects to a piece of hardware, acquires a lot of data (~1 GSample/sec), processes it, and spits it out to the screen upon a button click. I am now ...
3
votes
3answers
314 views

Modelling clothing in C++

Gents and Ladies, I'm looking to write a bit of software that will end up drawing a human frame (which can be configured with various parameters), and the plan is to have some sort of clothing placed ...
3
votes
1answer
426 views

How to add an external static library to a Visual C++ 2010 Express project

I can't believe I'm having such a hard time figuring out how to do something so simple. I have an external library (including a .lib and .h file) that I want to add to my project. From what I've read ...
3
votes
2answers
1k views

Linkage Error LNK1104 in Visual C++ 2010

Today I fired up Visual Studio 2010 (Visual C++) and started working on a project. The solution contains two projects. One is a static library I am writing, the other is a test application containing ...
3
votes
3answers
266 views

Ambiguous call if class inherits from 2 templated parent classes. Why?

I have a templated class that performs an action on the class that is given as template argument. For some of my classes I want to 'group' the functionality in one class, to make it easier for the ...
3
votes
1answer
434 views

How to use set_intersection with std::set in VC++?

I'm trying to compile VC6 project with VC10... I obtain an error C2678 with set_intersection: I wrote some example to understand. Can anybody explain how to compile this snippets ? #include ...
3
votes
2answers
1k views

std::make_shared as a default argument does not compile

In Visual C++ (2008 and 2010), the following code does not compile with the following error: #include <memory> void Foo( std::shared_ptr< int > test = ::std::make_shared< int >( ...
2
votes
1answer
61 views

VS2010 bind implementation doesn't support move-only types?

I've found that the following code doesn't compile in Visual Studio 2010 (but works fine in GCC): using namespace std; unique_ptr<string> up(new string("abc")); auto bound = ...
2
votes
1answer
68 views

How to create custom file templates i VC++ 2010?

I want to make a custom file template for .cpp and .h files in VC++ 2010 but can't figure out how to do this. All I want to include in the files that I create is: /* * File: main.cpp * Author: ...
2
votes
0answers
90 views

Using Debug-Only suffix for referenced C++ DLLs in Visual Studio 2010

In previous versions of Visual Studio (from VC6 up to VS2008), we have had the convention of putting a "D" at the end of the names of debug-build DLLs, as is done for MFC and the CRT libraries. So, ...
2
votes
2answers
394 views

Filling std::map with std::transform (error: cannot deduce argument)

I'm trying to fill std::map with std::transform. Next code compiles without error: std::set<std::wstring> in; // "in" is filled with data std::map<std::wstring, unsigned> out; ...
2
votes
2answers
575 views

How do I use iFileDialog in a VC++ 2010 project converted from VC++ 6.0?

I am able to use a FileSaveDialog (Common Item Dialog) in a VC++ 2010 app like this: IFileDialog *pFileDialog; HRESULT hr = CoCreateInstance(CLSID_FileSaveDialog, NULL, CLSCTX_INPROC_SERVER, ...
2
votes
4answers
254 views

Why operator [] is not allowed on std::auto_ptr?

As the title says it's all - "Why operator [] is not allowed on std::auto_ptr ?" #include <iostream> using namespace std ; template <typename T> void foo( T capacity ) { ...
2
votes
1answer
508 views

Visual Studio 2010 compiling inline assembly in c++ as if Visual Studio 6?

I have a C++ project created in VS6 that was opened in VS2010 and compiles fine. It contains a class with a bit of inline assembly including the following code: __asm{ mov eax,this mov ...
2
votes
7answers
782 views

Very large array on the heap (Visual C++)

I hope some one can help me, i'm trying to create an int[400000000] (400 millions) array on my application using visual c++ 2010 but it generates an overflow error The same code runs on linux with ...
2
votes
1answer
619 views

Using make_shared with a protected constructor + abstract interface

Given an abstract interface and an implementation derived from that interface, where constructors are protected (creation of these objects only being available from a class factory - to implement a DI ...
2
votes
1answer
1k views

Visual C++ 2010 Express: extension SDK available?

Allegedly, Visual C++ 2010 Express, unlike previous versions, supports third party extensions. I just downloaded the release candidate SDK for Visual Studio 2010, but the installer fails saying that ...
1
vote
0answers
25 views

How to build boost::mpi library with Open MPI on Windows with Visual Studio 2010

I installed Open MPI 1.5.4 (64 bit) and I am trying to rebuild boost libraries (1.48) with bjam. I changed user-config.jam file, by adding using mpi line with explicit compiler path (although mpic++ ...
1
vote
1answer
45 views

How to export class containing a vector of a private struct

I have a Class A ( that I would like to export) which contains a vector of a private struct. When compiling the code I have the warning C4251( http://msdn.microsoft.com/en-us/library/esew7y1w.aspx ). ...
1
vote
1answer
52 views

managed c++ string compare working oddly

I am trying to compare 2 strings but getting weird results. On some computers, the comparison works correctly and on others, it does not. The codes is written in Visual Studio 2010 using managed C++.I ...

1 2 3 4