Tagged Questions
13
votes
1answer
251 views
How to recursively dereference pointer (C++03)?
I'm trying to recursively dereference a pointer in C++.
If an object is passed that is not a pointer (this includes smart pointers), I just want to return the object itself, by reference if ...
11
votes
2answers
256 views
Are there any side-effects of using macro _BIND_TO_CURRENT_VCLIBS_VERSION?
We are porting a VC++ project from Visual Studio 2003 to Visual Studio 2008 SP1(9.0.30729.4148). The dependent external libraries are also
compiled with Visual Studio 2008 SP1.
MainApp - Main ...
10
votes
3answers
280 views
VC++ allows to use const types for STL containers. Why?
STL containers require the stored values to be copy constructible and assignable. const T is obviously not an assignable type for any T, but I tried to use it (just being curious) and found out that ...
10
votes
4answers
4k views
Where is shared_ptr?
I am so frustrated right now after several hours trying to find where shared_ptr is located. None of the examples I see show complete code to include the headers for shared_ptr (and working). Simply ...
6
votes
3answers
455 views
ITERATOR LIST CORRUPTED in std::string constructor
The code below compiled in Debug configuration in VS2005 SP1 shows two messages with “ITERATOR LIST CORRUPTED” notice.
Code Snippet
#define _SECURE_SCL 0
#define _HAS_ITERATOR_DEBUGGING 0
#include ...
5
votes
3answers
84 views
Can I check which function templates have, or have not, been instantiated at least once?
I have a lot of template code. Since bad template code does not throw a compiler error unless it is compiled, is there any way I can check which template functions the compiler actually 'compiled' and ...
5
votes
6answers
589 views
VS2008: Can I build a project with 2 CPP files of the same name in different folders?
Here is my folder structure:
/
|
-- program.cpp
-- utility.h
-- utility.cpp
|
-- module/
|
-- utility.h
-- utility.cpp
// Note that I have two files named utility.h and two named ...
5
votes
6answers
996 views
View Compiler Mangled Names in C++
How do I view the compiler-generated mangled names for overloaded functions in C++? I'm using VC9 but answers for other compilers are welcome too.
Edit: I find all the answers useful here. Accepting ...
3
votes
1answer
370 views
Overloading operator new [] in C++ fails with Visual C++
I have code that overloads operator new. The code below works fine under Linux (gcc4x) but not Windows ( Visual C++ 2008 Express Edition)
The code under Visual Studio 2008 Express Edition reports
...
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 >( ...
3
votes
2answers
272 views
Can I use a C style library built with VC6 directly in VC9 project?
We use an internal library(developed by some other team) built with VC6 compiler. This library mainly contains C Style APIs. We have a plan to migrate to Visual Studio 9 compiler. Should I request ...
3
votes
1answer
917 views
“Cannot convert parameter” using boost::variant iterator
I want to create a function that can take different types of iterators which store the same type of object:
The first is a std::map containing shared_ptr<Foo> (typedef-ed as FooMap) and the ...
3
votes
2answers
2k views
VC9 and VC8 lib compatibility
(The original question was asked there : http://www.ogre3d.org/phpBB2/viewtopic.php?t=44832 )
Someone asked :
"While I would like to build everything in vs2008 (VC9), the PhysX SDK is built with ...
2
votes
1answer
114 views
Why is term not evaluating to a function taking 0 arguments?
When I try compiling
template<bool val>
struct boolean { static const bool value = val; };
template<typename T>
struct is_callable : boolean<sizeof((*(T*)0)()) >= 0> { }; ...
2
votes
1answer
76 views
Building error c101008d Visual Studio c++ related to mt.exe
I need to compile a code in C++ which has some OpenCV functions and does a kind of test. The fact is that the code has worked in other computers, I just need to set the includes and libraries properly ...
2
votes
3answers
150 views
Why do I get these warnings in Visual C++ 2008 when building a struct?
I have this code
typedef struct
{
const char* fooString;
const bool fooBool;
}fooStruct;
And this initializer:
static const fooStruct foo[] =
{
{"file1", true},
{"file2", false},
...
2
votes
2answers
152 views
Visual C++ generates DIV instead of IDIV (x86, integer arithmetic)
I'm working with Visual C++ 2008 here (9.x) and I was preparing a fixed point value when I ran into the compiler generating a DIV instead of an IDIV. I collapsed the code into a tiny piece to exactly ...
2
votes
1answer
96 views
Creating a standalone DLL that contains all dependencies
I'm working on a C++ project in VS9 that references a number of header files, .dll and .lib files.
I want to output this as a standalone DLL containing all the dependencies so that I can just use ...
2
votes
4answers
837 views
How to call VB.NET DLL from C++ (Call the functions also - not DLL file only)
I want to ask question about how to call VB.NET DLL from C++ program
I have tried many times to call VB.NET DLL file from C++ and it is working fine but the problem is I can't call the function of ...
2
votes
3answers
153 views
Visual Studio 2008 does not care about base class existence when compiling templates?
It seems that VS 2008 handles class templates with inheritance a bit differently from the other compilers.
The following code compiles without any error on VS 2008 (with default options):
template ...
2
votes
1answer
96 views
Organisation of compiler dependency paths to external libraries
I my current team we organize the dependencies to external libraries headers in the project settings like that:
Compiler Settings->Additional Includes:
d:\src\lib\boost_1_43
d:\src\lib\CxImage_6_00
...
2
votes
1answer
54 views
VS 2008 : See the elements referred to pointer
This seems to be a rather stupid question, but I create a pointer to an array of doubles :
double* tab = new double[10];
Then I fill the double array, but when I expand the tab pointer in Debug ...
2
votes
2answers
210 views
Recovering graceflly from a failed vsnprintf on msvc2008
I'm looking for a way to use some variant of vsnprintf() with a buffer that can possibly be longer than the input buffer without triggering an error to the user.
So far I've found that vsnprintf() ...
2
votes
7answers
499 views
this compiles without a warning in VC9 at warning level 4. Why would one NOT consider this a compiler defect?
I saw some posted code with an out of range error on SO that made me wonder. I would expect a compiler to generate a warning (at the highest level at least) for this code
#pragma warning(push,4)
int ...
2
votes
5answers
2k views
Using C++ DLLs with different compiler versions
This question is related to "How to make consistent dll binaries across VS versions ?"
We have applications and DLLs built
with VC6 and a new application built
with VC9. The VC9-app has to use
DLLs ...
1
vote
1answer
33 views
View integer on memory locations allocated as char in Visual C++ 2008 debugger
I'm using Visual C++ 2008 to write and debug my project. I have a char* pointer. I want to view 4 bytes starting at my pointer as an integer in the debugger. How do I do it? (int)(*pointer) comes to ...
1
vote
1answer
140 views
Connecting to a MySQL server using C++
I'm attempting to connect to a MySQL server using C++ with the MySQL ODBC 5.1 Driver on Visual C++ 2008 Express Edition.
I'm following these instructions from MSDN:
SQLConnect
SQLGetData
SQLFetch
...
1
vote
1answer
56 views
Nested inheritance trouble in Visual Studio 2008
I am currently working on a widget-based graphical user interface. It is structured as a tree with Widgets as the leaves and Containers as the nodes of the tree. The (solvable) problem with this ...
1
vote
1answer
128 views
Sleep() doesn't work in winapi32?
I'm still a beginner in programming GUI using c++ winapi32, and I found something strange.
Here's a part of my code:
InvalidateRect(hwnd,&rect, true);
//Sleep(delay);
...
1
vote
1answer
70 views
Visual C++ (2008) debugging snapshot
Sometimes I need to keep track of several lines of code where variable values change on the object I am interested in. When the object changes, I need to compare the variables to see what is ...
1
vote
4answers
139 views
Compiler warning when switching on an enum
enum ENUM(Option1,Option2,Option3);
string func(ENUM x)
{
switch(x)
{
case Option1: return "Option1";
case Option2: return "Option2";
case Option3: return "Option3";
}
}
This compiles and ...
1
vote
4answers
111 views
How to set more strict compiling rules in VC when compile C++ template code
guys,
I want VC has the same strict compile rules as GCC when it compiles the c++ template code. But I don't know how to set this in my VC9.0 (Visual Studio 2008).
For example,
the following code is ...
1
vote
3answers
354 views
Static const variable is not constant in child class
I am using Visual Studio 2008 and have two classes Parent and Child. Parent declares some static const variables in the header, which are then defined in the cpp file. When I try to use the defines ...
1
vote
1answer
163 views
How to get __declspec(thread) working on Windows CE
I have a class containing:
class SomeClass {
SomeClass *previous;
static __declspec(thread) SomeClass *stackTop;
public:
SomeClass() : previous(stackTop) { stackTop = this; }
...
1
vote
1answer
372 views
getting all combinations from numbers without repeating
hi
I work with c++ ,can I find easy way for getting an array from a set of numbers containing all possible combinations between
ex : {1,2,3}
{ {3,1,2},
{1,2,3},
{3,2,1},
{1,3,2},
...
1
vote
1answer
229 views
release version of app throwing c1083 cannot open include file error
I have a project that I have been running in debug mode and compiles and works fine. However, when I try and do a release version I now get the following error:
"fatal error C1083: Cannot open ...
1
vote
3answers
316 views
Compilation issues for Migration from VC6 to VC9
I am porting a legacy C++ system from VC6 to VC9.
The application (<APP A>) statically links to an internal application <APP B> ( developed in house but by a separate team).
A local copy ...
1
vote
1answer
189 views
How to resolve compilation error “cannot convert const to reference” in VC++9
I am working in migration project from VC6 to VC9. In VC9 (Visual Studio 2008), I got compilation error while passing const member to a method which is accepting reference. It is getting compiled ...
1
vote
2answers
1k views
Determine when using the VC90 compiler in VS2010 instead of VS2008?
Is there a (Microsoft-specific) CPP macro to determine when I'm using the VC9 compiler in Visual Studio 2010 as opposed to Visual Studio 2008? _MSC_VER returns the compiler version, so with VS2010 ...
1
vote
2answers
103 views
How to simulate a file read error in the CRT
Using VS2008, we would like to simulate a file that has a size of X, but that has a read failure at X-Y bytes, so that we get an error indication.
Anyone have an idea of how to do this on windows? ...
1
vote
4answers
263 views
Different destructor behavior between vc9 and gcc
The following code gives a different number of destructors when compiled on GCC and vc9. AFAIK when run on vc9 i get 5 destructors showing, which I understand. The + overloaded operator is called, and ...
1
vote
2answers
320 views
How to detect “Use MFC” in preprocessor
For a static Win32 library, how can I detect that any of the "Use MFC" options is set?
i.e.
#ifdef ---BuildingForMFC---
....
#else
...
#endif
0
votes
1answer
121 views
integer to string
The strutils.h library contains a function IntegerToString. (You might have wondered how
the computer actually goes about the process of converting an integer into its string representation.)
As it ...
0
votes
0answers
58 views
Arrays with Curiously Recurring Template Pattern?
I have a CRTP-based wrapper for a Windows HANDLE:
#include <windows.h>
template<class T>
class HandleT
{
HANDLE handle;
operator HANDLE() const { return this->handle; }
...
0
votes
1answer
82 views
Is it possible to inject code into translation unit immediately before compilation
I build my C++ code base with MSVC++ 2008 and 2010. Is it even possible to get translation unit, analyze it, insert some code if necessary and then pass on to the compilation process? Original source ...
0
votes
0answers
243 views
Problems using Imagemagick with Visual Studio 2008
I want to integrate the library imagemagick into my large existing VS2008 solution into a MT-dll project.
I tried several ways:
If I use the downloadable default distribution from here
...
0
votes
0answers
55 views
Three levels of project dependencies cause not everything to be linked in VC++ 2008
1) Solution contains two projects. Project 2 depends on project 1(checked in "Project Dependencies" checkbox group).
A part of classes in project 1 are declared and implemented but never used in code ...
0
votes
2answers
268 views
std:map iterator returns badptr on find
I have my std::map defined as
typedef std::map<string,ImageData*> ImageDataMap;
typedef std::pair<string,ImageData*> ImageDataPair;
typedef std::map<string,ImageData*>::iterator ...
0
votes
1answer
152 views
Random generated level not showing up. Evil Monkeys tutorial
Hi I made a level generator with a 3D Buzz tutorial called Evil Monkeys.
I generated a level but I can't get it to draw on the screen.
My code:
Level.cpp
#include "Level.h"
#include ...
0
votes
2answers
548 views
C++ Error 1 error C2227: left of '->keyPress' must point to class/struct/union/generic type
Hi I am having trouble with my code. I got error C2227.
My code:
Game.h
#ifndef GAME_H
#define GAME_H
#include "drawEngine.h"
#include "Sprite.h"
class Runner
{
public:
bool run();
...