An error that is generated during the compilation phase, often due to problems with invalid syntax and/or types. Compare to [runtime-error].
0
votes
1answer
6 views
Gradle (Android Studio) won't compile 9patches
I have a problem, I cannot compile this 9patch with Android Studio. It is from the Google Play Music application so it should work. I have made it an 9patch with the "draw9patch.bat" from the Androird ...
0
votes
0answers
7 views
Adobe Flash Professional CS5 compile error log
I'm compiling my *.fla file via Adobe Flash Professional CS5 into a *.swf file on windows. My build-process requires to document any compile errors or warnings into logfiles.
Is there a way to save ...
0
votes
0answers
16 views
QTcreator error lnk 2019 with external library
i have some trouble with including an external library in a qt project.
i made a library, this library use another library and i have to use my own library in a qt project.
after compiling it i have ...
0
votes
0answers
21 views
Error while compiling a simple project
I am trying to compile a project in CodeBlocks (12.11) with wxWidgets 64 bit (2.8.12) and I am getting this errors:
undefined reference to `__imp_z22wxInitAllImageHandlersv'|
undefined reference to ...
2
votes
0answers
18 views
Undefined $font-family on Secha Touch 2.2.1 using compass, sass
Using this tutorial with the version Sencha Touch 2.2.1 I'm not able to compile my project because of an undefined $font-family:
error application.scss (Line 2 of _Class.scss: Undefined variable: ...
1
vote
8answers
67 views
Why do I get a compiling error that says error: ‘else’ without a previous ‘if’?
When I try to compile the code I get an error that says else without a previous if:
// Fibonacci series using recursion
#include <iostream>
using namespace std;
int fib (int n);
int main()
{
...
0
votes
1answer
27 views
LINK : fatal error LNK1104: cannot open file “glut32.lib”. how to fix this error?
I want to ask a question. I'm using Microsoft Visual Studio 6.0 and I was stuck in this #error. LINK : fatal error LNK1104: cannot open file "glut32.lib" . Actually the command that I used can be run ...
0
votes
1answer
59 views
unrecognized command line option '-std=c++11'
CodeBlocks keeps giving me this error even though there is no -std=c++11 option enabled (I checked all the settings and the project file).
Is there A way to disable this?
1
vote
1answer
15 views
Implicit declaration of function '…' is invalid on C99
I am still working on an iPhone app called Cruzia and am now wondering why I am geting these two warnings, both in ViewController.m and three errors, all an Apple Mach-O Linker Error. If you can point ...
0
votes
0answers
9 views
Modx: Catchable fatal error: Argument 2 passed to modParser::collectElementTags() must be of the type array, null given
Just started with new project and want to try ModX to use it for the project but get stuck on this error (it won't disappear) :
**Catchable fatal error: Argument 2 passed to ...
2
votes
1answer
43 views
Can't allocate a pointer to object of abstract type?
For some reason, I'm not able to initialize a set of pointers to an abstract data type like so:
gkAnimation* run = NULL, walk = NULL, idle = NULL;
I'm getting an error saying:
...
0
votes
0answers
8 views
Compiler Error: No Suitable Constructor found
I created a class called Vehicle with enum objects of VehicleEngine type. The default and non-default constructors appear below:
package Michael.Orlowski;
import java.text.DecimalFormat;
public ...
0
votes
5answers
70 views
C# Valid Syntax (variable declaration within IF statement without parentheses)
I have a simple question which I can not seem to understand.
Why is this valid c#:
if (node != null)
{
string fullAddress = node.InnerText;
}
And this is not?
if (node != null)
string ...
0
votes
1answer
40 views
C++ No matching function for call
A is a class defined by myself in a.h. Constructor A(const char* str) is defined in a.cpp as:
A::A(const char *str){
...
}
In file1.cpp, I want to return an A object: return A("");
When I ...
0
votes
1answer
20 views
c# Object reference not set to an instance of an object error , tried to match textbox and databse value
i have a little problem in my code, i tried to match my textbox value to database, bu i get an error message ...
here is my codes:
my main code;
protected void btnAddNewTopic_Click(object sender, ...