Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
12answers
18k views

C++ Redefinition Header Files

How do I prevent from including header files twice? The problem is I'm including the in MyClass.h and then I'm including MyClass.h in many files, so it includes multiple times and redefinition error ...
8
votes
3answers
160 views

What if redefine an inline function?

I've spent days in a weird problem and finally discover that there were two inline function of the same signature in the project and they caused the problem. To simplify the situation here is an ...
7
votes
4answers
1k views

How to redefine a Ruby constant without warning?

I'm running some ruby code which evals a .rb file everytime its date changes. In the file, I happen to have constant definitions, like Tau = 2 * Pi and of course they make the interpreter display ...
6
votes
3answers
202 views

How could I redefine a subroutine and keep the old one too?

Here's what I'd like to achieve: sub first { print "this is original first"; } *original_first = \&first; sub first { print "this is first redefined"; } original_first(); # i expect ...
5
votes
3answers
616 views

Can I redefine a c++ macro for a few includes and then define it back?

I am using both the JUCE Library and a number of Boost headers in my code. Juce defines "T" as a macro (groan), and Boost often uses "T" in it's template definitions. The result is that if you ...
4
votes
3answers
189 views

PowerShell - How do I call a cmdlet in a function when overriding that cmdlet's name with the same name as the function?

So I have a cmdlet named update-name that I have no access to change. I have created a function named update-name (the same name as the cmdlet). How do I call the cmdlet from the function with the ...
4
votes
2answers
1k views

Can't include <gl/gl.h>

I'm using Visual Studio 2010. I'm trying to write simple Camera class in OpenGL. I need to include gl/gl.h in Camera.h gl/gl.h is already included in main.cpp and Camera.h is included in main.cpp When ...
3
votes
5answers
77 views

Override a member function with different return type

Consider the example below: #include <iostream> using namespace std; class base { public: virtual int func() { cout << "vfunc in base class\n"; return ...
3
votes
3answers
76 views

C++: function inside class for multiple variable values

a bit of a noob problem. Inside a class called 'cell', I have an enum 'Example' say typedef enum Example { E1=0, E2, E3, E4 }; Example inputValueE; Also I have a ...
3
votes
1answer
356 views

Why “Redefinition of typedef” error with GCC 4.3 but not GCC 4.6?

I've been developing my application using GCC 4.6 for compilation but a user reported the "redefinition of typedef" error. After some confusion where I wrongfully told the user to fetch the latest ...
3
votes
1answer
92 views

implementation of a class if a data member is redefined

what happens to the implementation of a class if we redefine a data member? for exemple, suppose we have: class foo { public: int a; char *b; }; ... class bar : public foo { public: float ...
2
votes
1answer
55 views

How to save pointer to redefined operator?

I have overloaded new and delete operators. I want to save pointers to 'old' new and delete to call it into 'new' new and delete. For example: #include "h.h" void * operator new ( size_t size, ...
2
votes
2answers
206 views

variable redefinition, embedded c

I'm working on an embedded c project and am having issues with global variable redefinition. I've split up the function declarations and definitions into a handful of .h and .c files. Many of these ...
2
votes
6answers
328 views

Multiple redefinition error

After learning more about classes and pointers, I refactored a program I had and wiped out > 200 lines of code, in the process creating two other classes, Location and Piece. The problem is, after ...
2
votes
2answers
475 views

When is a Ruby class not that Ruby class?

I have this code in my controller for a Rails app: def delete object = model.datamapper_class.first(:sourced_id => params[:sourced_id]) if object.blank? render :xml => "No ...
1
vote
4answers
55 views

Single class has a Class Redefinition Error

I'm new to C++, and I'm having a problem with my class definitions in a header file. The code for the header file (Student.h) is: #include <string> using namespace std; class Student { // ...
1
vote
1answer
49 views

Ruby - Forbid constants redefinition

redefining some constant in Ruby (ex. FOO = 'bar') generates the warning already initialized constant. I'm trying to write a sort of ReallyConstants module, where this code should have this ...
1
vote
3answers
52 views

Reuse of class in file with main()

How can I reuse a class that is in a file that already has a main method? E.g. I would like to use struct foo that another developer wrote in foo.cpp in my own program, main.cpp: //-- foo.cpp -- ...
1
vote
1answer
80 views

How to redefine a function in php?

Now i'm stuck with file_exists() function. My project is built from repositories, one is symlinked as a DocRoot, others are available to php interpreter via include_path. But the default file_exists() ...
1
vote
4answers
865 views

“redefinition of 'foo' as different kind of symbol”

I’m trying to refactor and bring-over some old code, and I ran across something like this: struct foo; typedef struct foo * foo; When attempting to compile it, I get the following ...
1
vote
3answers
195 views

C++ class redefinition error help

I am getting errors like: FxMathFunctions.h: In function 'FxInt32 IMin(FxInt32, FxInt32)': FxMathFunctions.h:13: error: redefinition of 'FxInt32 IMin(FxInt32, FxInt32)' FxMathFunctions.h:15: error: ...
1
vote
3answers
993 views

How do I print out a tcl proc?

Given a simple tcl proc like proc foo {a b} {puts "$a $b"} What tcl command can I use to print out the procedure foo ... that is I want the text of the proc back ... For instance: % proc foo {a ...
0
votes
1answer
22 views

redefinition of “class GtkwidgetDef”

I really don't know why i have this redefinition error GtkwidgetDef.h #include <gtk/gtk.h> class GtkwidgetDef { public: GtkWidget* display; GtkwidgetDef(GtkButton* button); }; ...
0
votes
1answer
22 views

How to #define __forceinline inline?

I have some Microsoft code (XLCALL.CPP) which I am trying to compile with CodeBlocks/MinGW. At this line I get a compile time error: __forceinline void FetchExcel12EntryPt(void) This is the error ...
0
votes
1answer
26 views

MiniTest is crashing

I want to overwite send in Object, like so class Object @@object_send = self.instance_method( :send ) def send *args @@object_send.bind( self ).call *args end end or class ...
0
votes
1answer
89 views

Compiling a Schema containing redefinitions in C#

When reading a schema containing <xs:redefine> tags and trying to compile it using a schema set, I get this exception: 'SchemaLocation' must successfully resolve if <redefine> contains ...
0
votes
1answer
151 views

error: 'int main(int, char**)' previously defined here in C++

I'm implementing gtest now, and it gives me an error : main previously defined here. Here's utest.cpp // Bring in my package's API, which is what I'm testing #include "../src/test.cpp" // Bring in ...
0
votes
3answers
85 views

redefinition problem

I am trying to implement a function class, but got a error of redefinition. I know it is stupid, but can anyone please help? Thanks a lot! === header file === #ifndef _NS4_h #define _NS4_h #include ...
0
votes
3answers
137 views

Strange error when trying to declare enum in C++ Visual Studio 2010

I'm having a strange issue compiling and old C++ Visual Studio 5 project in Visual Studio 2010. There is a nagging compiler error I cannot get rid of that appears to be related to the enumeration ...
0
votes
0answers
44 views

How to list redfined symbols [symbol conflict] from 2 static libs

How to get all re defined symbols when linking 2 static libs If we call a function from source file then only that object is linked to exe hence from that source file i can get any re defined ...
0
votes
1answer
44 views

Ignoring specific symbols in referenced assemblies

I have two managed assemblies that use a common batch of code. When referencing one to the other, the compiler complains about multiple redefinitions, as expected. Would it be possible to ignore the ...
0
votes
1answer
416 views

How to set Eclipse gcc compiler to ignore specific errors or change from error to warning

I need to build a project consisting of many C source and header files. The project compiles in xcode with warnings (which is fine) but when I try to compile it using the GNU gcc C compiler in Eclipse ...
0
votes
1answer
58 views

redefinition of *_get_type(void) gtk+ requried method

As already said by the headline, I get a compile error I seem to be unable to fix: error: redefinition of 'tinygecko_notebook_get_type' note: previous definition of 'tinygecko_notebook_get_type' was ...
0
votes
1answer
358 views

Errors with redefinitions after upgrade to XCode 3.2.3

I recently upgraded to Snow Leopard and Xcode 3.2.5 so I could test on my iPod Touch and iPhone and ran into some problems with the project I was working on. First it couldn't find a Base SDK, then my ...
0
votes
3answers
728 views

C++ class redefinition error

I am compiling a logging program, but I am receiving this error and cant figure it out for the life of me... logger.cpp:15: error: redefinition of ‘class Logger’ logger.h:20: error: previous ...
0
votes
2answers
446 views

racket scheme redefinition of constants

I am currently using racket scheme with DrRacket as the editor for some exploratory programming. When I try and redefine a function I get the following message: define-values: cannot re-define a ...
0
votes
2answers
380 views

calling multiple functions in javascript without overwriting the original - polymorphism problem?

I am using two different plugins requiring the onyoutubeplayerready function: http://code.google.com/p/jquery-tubular/ http://badsyntax.github.com/jquery-youtube-player/examples/player.html Both of ...
0
votes
2answers
413 views

new to C , error C2371: 'error" : redefinition; diffrent basic types

i've to submit this assigment in few hours and i'm very nervous, it's sort of Gas Station managing programs, handeling input files, and printing results... it's only 1 .c file and that's my first code ...
0
votes
4answers
405 views

Redefinition of class types - c++

I understand the problem I'm having with my code, but trying some of the things that others are suggesting isn't fixing my error. Here's my error messages: In file included from proj07.driver.cpp:4: ...
0
votes
1answer
360 views

C++ variable redefinition

I have a file: variableinclude.h #ifndef _variableinclude_h_ #define _variableinclude_h_ AClass* variable1; int* variable2; #endif But I include this file in another two different ones: - ...
0
votes
4answers
795 views

Why am I getting this redefinition of class error?

Apologies for the code dump: gameObject.cpp: #include "gameObject.h" class gameObject { private: int x; int y; public: gameObject() { x = 0; y = 0; } ...
0
votes
3answers
2k views

error C2375: redefinition; different linkage

Error place in api: #define DLLEXPORT extern "C" __declspec(dllexport) DLLEXPORT int CAnyseeUSBTVControllerDlg::InitCaptureDevice() { In my .h library class and function definition: class ...
0
votes
2answers
890 views

C++: static member functions and variables- redefinition of static variable?

I was trying to incorporate the Singleton design pattern into my code, but I started getting a weird error: main.obj : error LNK2005: "private: static class gameState * gameState::state" ...
0
votes
4answers
2k views

C++ redefinition due to including header files multiple times

As, the title says. I'm encountering redefinition errors due to including header files multiple times. I know its because of that, but I don't know how to resolve. Yes, I previously posted the same ...
-1
votes
3answers
202 views

Defining trouble. C++

IT'S SIMPLIFIED CODE! I HAVE C++ FILES(WHERE IS IMPLEMENTATION) AND HEADERS FILES(WHERE IS CLASS DEFINITIONS)! I have a file: Foo.cpp that incliudes main.h. And I have file Bar.cpp that uses funcs ...