An error that is generated during the compilation phase, often due to problems with invalid syntax and/or types. Compare to [runtime-error].
3
votes
2answers
44 views
Handling uninitialized Strings in Java
here's part of a small program I'm doing as a homework assignment:
public Exam maxGrade() {
Node p = firstNode;
int max = 0;
String name;
while (p!=null) {
if ...
0
votes
0answers
46 views
Ambiguous call to overloaded function (with a variable argument list)
I have the following code:
class Foo
{
public:
BOOL GetBar(char** ptr);
private:
BOOL GetBar(char** ptr, ...);
};
Foo* aFoo = ...;
char* aPtr = ...;
BOOL res = ...
1
vote
3answers
31 views
Class isn't abstract but I get Error C2259: cannot instantiate abstract class
I'm trying to implement a Strategy pattern in C++, but I get the following error:
Error 1 error C2259: 'LinearRootSolver' : cannot instantiate abstract class
Here's my code (the line where the error ...
1
vote
1answer
16 views
Missing type specifier On a Templated List Class using Templated Nodes
This is the Contents of Graph.h without the header protects and other Functions
template <class T> class Node{
public:
T data;
Node<T> *NextNode;
public:
Node();
Node(T ...
0
votes
2answers
54 views
Uses unchecked or unsafe operations
I keep getting an error that says:
Note: ABag.java uses unchecked or unsafe operations.
I googled it and found this post, and made the changes that I thought would remove the error but I continue to ...
0
votes
2answers
23 views
XCode Undefined Reference
I have compiled a static library via the command line using llvm-g++-4.2. When I attempt to link against that library and build an app within XCode, I get this:
Undefined symbols for architecture ...
0
votes
1answer
19 views
Flash CS6 error 1120: Access of undefined property (AS3)
I'm having a bit of trouble trying to make a symbol move in flash CS6, using AS3.
I used code snippets for the arrow key movement, but there it all went wrong. I always get error -> access of ...
-4
votes
3answers
42 views
Getting 'illegal start of type' when compiling
public class WriteByteArrayToFile {
public static void main(String[] args)
{
String strFilePath = "C://Program Files/Java/jdk1.7.0_23/bin//s.excel";
try
{
...
-2
votes
1answer
37 views
C error - undefined reference to pow in Eclipse IDE - can use it in 'main' function but not in others. I AM using “-lm” compiler flag [closed]
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
const short int Z = 2;
const int parts = 1000;
const double epsilon = 1e-5;
typedef double (*func_n_l_r)(int, double);
...
0
votes
4answers
81 views
C vs C++: How to fix? Typedef Enum
I have found that code that works (although with warning) in C is now giving me an error when moved to C++. I'd like to know why this produces an error, and how to resolve.
I am converting someone ...
0
votes
1answer
10 views
Path definition in makefile
I have a doubt about indicating a path in makefile and I'd like to have a clarification.
Suppose my structure is made this way:
/home/machinename/softwarefolder/mainfolder
...
0
votes
1answer
18 views
Can't build test application with WxWIdgets in Netbeans
I'm a total c++ Newbie.
I'm trying to build windows aplications with Wx-Widgets under Net Beans.
So far so good. I have instaled everything, configured, build wx-widgets and attached it to the new ...
0
votes
4answers
105 views
Why does this java code compile
I came across this code
public class Main {
static int someint;
public static void main(String[] args) {
someint = -0;
print();
}
private static int print()
{
...
1
vote
1answer
37 views
Visual Studio 2010 - Error CODE 22
Upon trying to compile a program I get an error MSB3073: The command _ exited with code 22.
What does code 22 mean? Btw, the _ is not the actual command. I am just leaving the command out.
Edit: ...
0
votes
1answer
26 views
Issue to build mupdf library for android
I follow this to build mupdf library.
But I got the following error message at step 3: make generate
LINK build/debug/cmapdump ld: library not found for -lX11 clang:
error: linker command ...
-4
votes
0answers
63 views
Java Compiler not working with JDK 1.5 [closed]
I'm trying to compile my code with JDK 1.5 but am getting the following error:
Compiling Java Source Code (59 source file(s))...
Error : cannot access ceer.common.ParentConstants
...
1
vote
2answers
57 views
C++ template class with static class member
I am new to template programming. I have a vector class that I am attempting to template that contains static members of the same class as the parent:
template<typename T>
class Vector
{
// ...
0
votes
1answer
15 views
Qt5 missing opengl identifier's
i try to compile simple Qt application and port it to Qt5
in the pro file i included the opengl flag :
QT += opengl widgets
also the opengl Qt5 path is included :
...
0
votes
1answer
44 views
Impossible to add digits to the ArrayList despite using appropriate method
I am currently implementing a binary calculator as a part of my course assignment for Java Programming. I have stumbled across one problem I don't understand. In the code outlined below, I wanted to ...
-1
votes
2answers
24 views
error in moveTo() of sikuli
reg = Region(20,30,40,50)
reg2 = Region(60,70,80,90)
reg.moveTo(reg)
When I run this program I got the following error
TypeError: moveTo(): 1st arg can't be coerced to org.sikuli.script.Location
...
0
votes
2answers
80 views
Operator [&] in c++
I have a code and when I'm building it in cygwin enviroment I get errors related to [&] What does [&] mean? How do I solve this or what do I replace it with to make it work?
Code:
...
0
votes
2answers
23 views
Compile Error: Undeclared member that is actually declared
I have created a class that works as it should except for three supplemental member functions. In all of the other public member functions I refer to a private data member and I have no trouble ...
-3
votes
1answer
20 views
All the errors are coming when I am trying to call this customized macro [closed]
define ERROR_CHECK_SERVER(x)\
({\
if (globalError)
{\
MM_MSG_PRIO(MM_GENERAL, MM_PRIO_ERROR, x);\
stop = true;\
break;\
}\
})
code @ line no.
131 status = ...
0
votes
0answers
19 views
Compiling EzStream
I am using EzStream (http://www.icecast.org/ezstream.php) as a source to IceCast, in a project i am working on, but we have ran into a problem with a little limitation with EzStream so i would like to ...
2
votes
2answers
20 views
Partial specialization of template class copy constructor
I'm trying to partially specialize the copy constructor of a very basic templated array class.
template<typename D, bool destruct = false> class SimpleArray
{
SimpleArray(const ...
0
votes
3answers
38 views
Iterable and Iterators - compile error
I have the following interface:
public interface DataSet<T> extends Iterable<T> {
public int nExamples();
public T getExample(int index);
public Iterator<T> iterator();
}
...
0
votes
1answer
28 views
iOS: Building project from terminal using xcodebuild
I have a static library in the project. I have setup header search path correctly to point library directory recursively. Could someone please tell me why is following error while buling project from ...
0
votes
1answer
29 views
Rcpp error with sugar all() line
I've written some code for R with Rcpp and C++ to try and become more familiar with it:
#include <Rcpp.h>
#include <vector>
using namespace Rcpp;
// [[Rcpp::export]]
CharacterMatrix ...
0
votes
1answer
38 views
CUDA: __device__ and __global__ error: expected constructor, destructor, or type conversion before “unsigned”/“void”"
So my problem is: I'm using Nvidia's nsight application on mac os x mountain lion to write a CUDA application: The source code is a .h/.cu/.cpp mix.
I have a HelloCUDA.h header with following ...
3
votes
1answer
21 views
Visual Studio: Compiler Warnings and errors appear twice in different languages
I have the weird case that in some of my Visual Studio projects the warnings and errors appear multiple times: In my case, one time in english and one time in German.
Does anyone know what ...
0
votes
2answers
106 views
Apple LLVM Compiler 4.2 Error exit code 1
This has been asked a lot of times, but I can't find a solution for my problem. This is the error i get:
clang: error: no input files
Command ...
4
votes
2answers
60 views
identifier “ostream” is undefined error [closed]
i need to implement a number class that support operator << for output.
i have an error: "identifier "ostream" is undefined" from some reason eventhough i included and try also
here the ...
0
votes
3answers
44 views
Errors while integrating Funambol SDK into my iOS app
I have an application in which i am integrating funambol sdk. When i build the code, there is an error No such file or directory. I had add these files to xcode, but still it shows as file missing ...
0
votes
1answer
31 views
nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified
I'm getting this problem with Nsight Eclipse. I just installed my Cuda Toolkit 5.0 I have a project which uses several C files and one Cuda file.
I read that sometimes the problem arises when you use ...
0
votes
0answers
8 views
Java compilation error for TPC-W Benchmark
I am following the guide given here to install and run the tcp-w benchmark. However, I am facing some java compilation issues.
At the very last step, when I do
javac rbe/*
I get the error:
...
0
votes
2answers
30 views
Breakout game in AS3 error #2007
I came upon an error I can't fix. I'm making a game and it should say "you lose" after losing your 3 lives, but in my case everything freezes and I get an error.
TypeError: Error #2007: Parameter ...
0
votes
1answer
21 views
I'm trying to write a shell command to find and compile all C programs
I'm trying to write a shell command to find and compile all C programs
find . -type f -name '*.c' -exec sh -c 'gcc {} -o $(dirname {})/$(basename {} .c)' \;
Is what I have now, and it actually ...
0
votes
0answers
8 views
Delphi 7 : Error WARNING. Duplicate resource(s): Error Type 24 (user-defined), ID 1:
[Error] WARNING. Duplicate resource(s):
[Error] Type 24 (user-defined), ID 1:
[Error] File D:...\Dpr\Accounting.res resource kept; file D:...\ELPack\source\ElXPThemedControl.res resource ...
-3
votes
1answer
45 views
Compiler error: std::basic_ios<_Elem, _Traits>::basic_ios(const std::basic_ios<_Elem, _Traits>::_Myt &)
Anyone come across this error before? I'm at a loss to what precisely could be causing this:
1>...include\sstream(640): error : "std::basic_ios<_Elem, _Traits>::basic_ios(const ...
-2
votes
2answers
55 views
Compiler errors: Java
When I'm trying to execute a compile Java file I'm getting this error:
Could not find or load main class XYZ
The class exists in the bin folder.
<pre>
C:\Windows\system32>cd ...
0
votes
1answer
27 views
How to convert warnings on iOS for “may not respond to XXX” warnings into error?
When i don't define functions in headers, i get this warning on iOS (as normally). However, i would like the compiler to stop compiling and give me error for this one, so i can find it quickly.
Is ...
0
votes
1answer
33 views
Compilation error with makefile and gtk+
I have a big problem with gtk+
When i compile with my makefile, i have :
gcc Affichage.c -W -Wall `pkg-config --cflags --libs gtk+-2.0`
...
0
votes
1answer
20 views
csharpcodeprovider unable to compile when assembly added to gac
My solution structure in vs is as follows.
MyRuleEngineFramework
RulesEditor
MyRuleEngineFramework is a class library. RulesEditor is a winforms project. The latter references the former, however, ...
2
votes
1answer
50 views
Scala REPL “error: value > is not a member of type parameter T”
This is my file
trait Set[T] {
def contains(x: T): Boolean
def incl(x: T): Set[T]
def union(that: Set[T]): Set[T]
}
class Empty[T] extends Set[T] {
override def toString = "."
...
1
vote
2answers
26 views
autoboxing of numeric literals : wrapper initialization vs passing method arguments inconsistency
Please consider 2 cases:
//1
Short s = 10; //obviously compiles
//2
takeShort(10); //error - int is not applicable
//where:
static void takeShort(Short s) {}
I assume that case 1 is changed ...
0
votes
1answer
38 views
Compiling a fortran 90 program under cygwin/gfortran error messages?
In the Cygwin terminal I enter
$ gfortran -o threed_euler_fluxes_v3.exe threed_euler_fluxes_v3.f90
and I get the compiler error
...
-1
votes
1answer
30 views
Getting the error “ Cannot find symbol ” on getdocumentBase()
Despite I import the applet library, NetBeans cannot recognize and use getDocumentBase() in my code, I have my html file within my project and all other required files as well, here is a part of my ...
1
vote
2answers
45 views
Solved: Java imported package does not exist
I am trying to use pdfbox to write a simple pdf file but the problem is that I am getting error :
cannot find symbol class PDDocument
I have downloaded the jar files into the same folder the ...
1
vote
1answer
37 views
JTextField and Drawing Images Does Not Work
So I have the following code, and whenever I press the square tool button it should draw a square where the JTextFields say it should be. But for some reason the JTextField values don't work, and the ...
0
votes
2answers
40 views
Strange Java error placement
Still working on the same project (Java-based shell) and tried to run it - and got a strange error. I was working with a single class that represents one of the commands, and, because of the fact that ...





