The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
31 views

Unresolved external symbol from template method

This one is going to be a bit complicated for me to explain without posting a ton of code, but I'll try my best. I'm writing an in-game console which requires me to bind both normal free functions and ...
0
votes
1answer
22 views

Django import ChainedForeignKey

i am trying to make a smart menu using ChainedForeignKey, but so far i am stuck with the import of ChainedForeignKey: from smart_selects.db_fields import ChainedForeignKey I am using pydev on ...
0
votes
0answers
15 views

MSVC Unresolved External Symbol Template Function

I am dealing with a problem that ... The code compiles fine with gcc but not with visual studio... I am compiling the following C++ code with MSVC11 I have a class defined as class rng_generator { ...
0
votes
1answer
41 views

Error: c++ unresolved external symbol [duplicate]

I am currently using two c files written by others in my C++ project in VS2008 (Actually,it is provided free online as a Polygon intersection library) The two files I downloaded are gcp.h and gcp.c. ...
0
votes
1answer
30 views

unresolved inclusion with any include files

I'm getting an error running a Hello World Program using Eclipse. I have installed MinGW and Cygwin, I know I only need one but I have other editor that uses one but not the other. I have checked the ...
0
votes
0answers
37 views

Problems trying to write data to a file. error LNK2019: unresolved external symbol

I'm getting an error: 1> Source.cpp 1>Source.obj : error LNK2019: unresolved external symbol "void __cdecl saveToFile(char const * const,struct Task * const,int)" ...
0
votes
5answers
36 views

What does this JS code do to x?

Got this little line here: var x = trigger ? n : (n-1); My JS is a bit rusty. What does this do?
0
votes
2answers
80 views

Grails: unable to resolve dependencies

I'm having trouble to find out why grails cannot resolve some dependencies. This is the error message I get when trying to compile/clean/run-app: ==== localMavenResolver: tried .... ==== ...
0
votes
0answers
21 views

unresolved error javax.security.jacc ldap + glassfishserver

I am getting the following error, which, in my opinion, is leading to "request not granted" response from glassfish server even after a successful login using LDAPRealm. How can I resolve this? ...
0
votes
0answers
177 views

Point Cloud Library and Visual Studio 2010

I've been trying to compile some simple code for point cloud, I believe I've included the relevant h files and libs but visual studio just seems to be giving me this: My include directories (in ...
0
votes
0answers
46 views

Eclipse Juno CDT 'symbole could not resolved' strange behavior

I have just installed eclipse juno cdt on Fedora 16. I have g++ installed. When I first created a hello world C++ project, I have problem of iostream could not be resolved. I corrected it by ...
0
votes
0answers
54 views

Eclipse CDT - how detect and mark unresolved functions?

I don't get it managed that eclipse detects and marks functions that have not been declared before. This only works with undeclared variables, but not functions. For instance: #include ...
0
votes
1answer
46 views

How to make dlerror() report *all* unresolved symbols from dlopen() failure to load shared library?

I'm trying to report all unresolved symbols from a failed call to dlopen() on a shared library. I've tried both RTLD_LAZY and RTLD_NOW as flags to the dlopen call. I know the shared library has 10 ...
-3
votes
2answers
77 views

Another “unresolved exernal symbol” error [duplicate]

I'm currently developing an OpenGL framework for video games. This framework contains a specific program that loads shaders. In the class of said program I have these three functions: ...
0
votes
0answers
111 views

javax.el.ELContext cannot be resolved error when adding FaceletContext jsf maven built

I have this error when I added those lines in one method of managed bean : I fixed the imports of my project but no result I use maven spring jsf and hibernate here is the error : Unresolved ...
1
vote
2answers
135 views

C++: Cannot instantiate my class with new [closed]

With Eclipse CDT I've written an abstract class 'Lexer' that resides in a shared library project. It is inherited by 'UTF8Lexer' in another shared library project. For these I created a UnitTest++ ...
0
votes
1answer
80 views

unresolved external symbol LNK2019 confusion

stack overflow, I have been trying to resolve my LNK2019 error with no success. I saw several similar posts on here so I gave this problem its due process and read the other posts (and tried to ...
0
votes
2answers
59 views

Java - use class defned in Main in another class

I'm new to Java and we have to make this little project. So i have 3+ classes. MY code is in pastebin http://pastebin.com/GEq9DLiP etc. etc. Problem is, that in 3rd class it sais "kangelane cannot ...
0
votes
0answers
58 views

Error LNK2019 in VS 2005 C++

My humble greetings to everyone. First of all, I would like to present myself. I am a student and I am relatively new to the field of programming. I am trying to run the codes given by Mr. Radford ...
0
votes
0answers
55 views

Unresolved inclusion: iostream C++ [duplicate]

I installed C++ eclipse Ide in Linux but when I create a project, I got error "Unresolved inclusion: iostream" error. I checked all other questions related to this, but nothing helped :( Please any ...
0
votes
1answer
145 views

unresolved inclusion error eclipse

So I went to this thing call the digital media academy for 3D game programming. We used eclipse along with Panda3D using their Macbook Pro's to create 3D games. I created an awesome game there which ...
1
vote
1answer
113 views

Unresolved external symbol error when creating Armadillo DLL

I am trying to create a dynamic library of the Armadillo linear algebra library, which is originally a header-only library, using VC++ 2010 on Win XP. I created a new project, added the source files, ...
0
votes
4answers
87 views

C++ Unresolved Token Issue

I am doing a program for a class and the teacher gave us a Cpp file that we had to implement. All was written by him except Main but I am getting a weird error. Any help would be great. Here is my ...
0
votes
2answers
100 views

Unresolved overloaded type>[int] for array subscript c++

Aloha. As you can see from the title of the question, I'm getting the error message 'Unresolved overloaded type>[int] for array subscript' in my flight-booking-system program. What I'm trying to do ...
0
votes
3answers
657 views

LNK1120: 1 unresolved externals and LNK2019: unresolved external symbol

I've been getting these two errors and I cant seem to find a solution that works. LNK1120: 1 unresolved externals Error 1 error LNK2019: unresolved external symbol "public: __thiscall ...
0
votes
1answer
113 views

unresolved import in eclipse pydev

I just properly installed the google gdata library for python (the script actually runs fine). I'm working with pydev in eclipse. I imported a module but the import command remains curly red ...
2
votes
0answers
132 views

c++ mex file in matlab

I am trying to call a c++ function from matlab using a mex file. While compiling any example mex programs given in the <root>\extern\examples\mex folder I get the same error: Creating library ...
1
vote
1answer
261 views

How to deal with unresolved inclusion in eclipse in c++

I import two self-defined project: projectA and projectB the classes in projectA include headers in project B but eclipse always show some yellow and red lines to say that unresolved inclusion. (I am ...
0
votes
0answers
105 views

error LNK2001: unresolved external symbol in jni

I am doing a test with erasure coding. I can only write Java language so I used ready-made Jerasure package with java. I used jni for joining C and java. But I have some problems as the following. So, ...
1
vote
4answers
144 views

Static constructor in c++ and fatal error LNK1120: 1 unresolved externals

To start with i should probably let you know that i am by no means a programmer, and i'm just doing this for a homework assignment, so if it's possible i will require a really detailed explanation :) ...
1
vote
1answer
167 views

Eclipse can't resolve SFML 2.0 object members

My problem does not look like a rare case (even though I could find nothing on the issue), nor is it the most important of issues but I figured it would be worth asking. I use SFML 2.0 release ...
0
votes
2answers
90 views

Unresolved external when exporting a templated class

I have this template smart pointer class in a dll. sp.h --------- #ifdef VLIB_EXPORTS #define VLIB_API __declspec(dllexport) #else #define VLIB_API __declspec(dllimport) #endif template < ...
0
votes
0answers
175 views

LNK2019 Unresolved external symbol - functions

i'm writing a code to compare strings inside linked lists. i'm required to use these functions in my code, and it's written by my professor; however, when i add these functions to my code, it fails to ...
0
votes
1answer
155 views

vaadin import necessary for Page.getCurrent()

I would like to know what's the import necessary for Page.getCurrent() in vaadin framework, a google search leads me to com.vaadin.server package, but eclipse notifies me that import com.vaadin.server ...
1
vote
1answer
2k views

How to solve error LNK2019: unresolved external symbol

Such quite small program drives me crazy. I always get the following error messages: Error 1 error LNK2019: unresolved external symbol "public: class std::basic_string<char,struct ...
1
vote
2answers
9k views

C++ error LNK2001: unresolved external symbol function _main [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? I'm learning C++ and I have a compiling problem in my project. I have read tons of ...
1
vote
1answer
185 views

Unresolved external symbol when using templates

My project is to write a program in C++ that creates a user-defined, list-implemented stack and queue that checks for letter-by-letter palindromes and word-by-word palindromes. So I would need to have ...
1
vote
0answers
85 views

VC++ 2012 skips glew library for some reason

I am trying to link glew32.lib in vc++ and I am getting unresolved externals. I set show progress to verbose to see what was happening and I get this output: ... Referenced in ...
0
votes
0answers
50 views

C++ templates: error LNK2019: unresolved external symbol [duplicate]

Possible Duplicate: Why do I get “unresolved external symbol” errors when using templates? I am new with C++ development and I am trying to learn templates. This is a simple example: ...
1
vote
1answer
164 views

Unresolved externals [Constructors] [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? I have a problem with the Linker which I just can't solve.. Already tried anything I ...
-1
votes
5answers
897 views

C++ : error LNK2019: unresolved external symbol [duplicate]

Possible Duplicate: What is an undefined reference/unresolved external symbol error and how do I fix it? So I have compared my issue to the vast library of problems that have spawned from ...
0
votes
0answers
199 views

git - couldn't resolve proxy '0' error

I receive this error when I try to push my code changes to git - error: Couldn't resolve proxy '0' while accessing https://github.com/pavanred/Radar-chart-utility-.git/info/refs fatal: HTTP request ...
2
votes
0answers
2k views

Eclipse CDT: Symbol 'cout', 'map', 'vector', 'size_t', etc could not be resolved

There is a lot of posts about that and I have already tried to apply solutions that have worked for others, but still not for me. First, everything was fine with a c++ project I am working on under ...
0
votes
0answers
206 views

Ant server is not running. Unresolved adress error

I am trying to get the ant server running for the Google Cloud Messaging example. All well setting it up, but after I try to run it, it gives me unresolves adress error. This is the result in the ...
0
votes
2answers
1k views

Recursive function that computes sum of n integers C++

I have to make a recursive function that will compute the sum of the first n integer in an array of at least n integers. I believe I have the function complete the cout statement however is causing an ...
0
votes
0answers
7 views

Apache fallbackresouce : How to capture unresolved?

Im using the fallbackresource directive in Apache to redirect all requests for non-existing files to /index.php. This works just fine, but in some cases I need to inspect which part of the request ...
0
votes
1answer
726 views

Visual C++ 2010: ``unresolved token" LNK2020

I have a VC++ 2010 solution containing two projects: ProjectX and ProjectXTests. In the current configuration, ProjectX builds as a static library and ProjectXTests as a DLL intended to test various ...
1
vote
1answer
2k views

Difference between OpenGL files glew.h and gl.h/glu.h

I've build an opengl program with my glu and gl header files default included in windows 7 professional edition. Now, I've bought a book that describes OpenGL game development. The author of this book ...
0
votes
1answer
183 views

lib from VS2008 in Qt Creator

I'm migrating from VS2008 to Qt Creator (but still using msvc2008 compiler on Windows) and I have a library (.lib) compiled with VS2008. Now, in Qt Creator on Windows it doesn't link with my program, ...
0
votes
1answer
181 views

How to resolve com.android.internal.R.drawable.hover_tooltip_bg?

I reset my windows station and now I can't set-up the project. I get multiply times "hover_tooltip_bg cannot be resolved or is not a field". But I don't understand in which problem is? What I should ...

1 2 3