Tagged Questions

An error that is generated during the compilation phase, often due to problems with invalid syntax and/or types. Compare to [runtime-error].

learn more… | top users | synonyms (5)

396
votes
34answers
107k views

Why is this program erroneously rejected by three C++ compilers? [closed]

I am having some difficulty compiling a C++ program that I've written. This program is very simple and, to the best of my knowledge, conforms to all the rules set forth in the C++ Standard. I've ...
65
votes
12answers
11k views

GCC compile error with >2 GB of code

I have a huge number of functions totaling around 2.8 GB of object code (unfortunately there's no way around, scientific computing ...) When I try to link them, I get (expected) relocation ...
41
votes
4answers
842 views

Named arguments and generic type inference in C# 4.0

I had been programming under the assumption that, when calling a method in C# 4.0, supplying names for your arguments would not affect the outcome unless in doing so you were "skipping" one or more ...
35
votes
6answers
2k views

List<int> test = {1, 2, 3} - is it a feature or a bug?

As you know, it is not allowed to use the Array-initialisation syntax with Lists. It will give a compile-time error. Example: List<int> test = { 1, 2, 3} // At compilation the following error ...
34
votes
6answers
1k views

Why is an assignment to a base class valid, but an assignment to a derived class a compilation error?

This was an interview question. Consider the following: struct A {}; struct B : A {}; A a; B b; a = b; b = a; Why does b = a; throw an error, while a = b; is perfectly fine?
31
votes
15answers
5k views

Recommended gcc warning options for C

Other than -Wall what other warnings have people found useful? http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Warning-Options.html
25
votes
3answers
2k views

'Delegate 'System.Action' does not take 0 arguments.' Is this a C# compiler bug (lambdas + two projects)?

Consider the code below. Looks like perfectly valid C# code right? //Project B using System; public delegate void ActionSurrogate(Action addEvent); //public delegate void ActionSurrogate2(); // Using ...
22
votes
6answers
9k views

Anonymous method in Invoke call

Having a bit of trouble with the syntax where we want to call a delegate anonymously within a Control.Invoke. We have tried a number of different approaches, all to no avail. For example: ...
21
votes
7answers
589 views

Why can't I “static import” an “equals” method in Java?

I like using this method here: org.apache.commons.lang.ObjectUtils.equals(Object object1, Object object2) The only drawback (compared to Google Guava, for instance), is that I cannot static import ...
20
votes
4answers
333 views

C++: How to trigger a compiler error when function return value is unused?

Let's say I have a normalize function defined as: Vec3f Vec3f::getNormalized() const { return (*this)/this->length(); } Is it somehow possible to create a compile-time error if this function ...
20
votes
5answers
452 views

Why can't I declare an enum inheriting from Byte but I can from byte?

If I declare an enum like this ... public enum MyEnum : byte { Val1, Val2 } ... it's working. If I declare an enum like this ... public enum MyEnum : System.Byte { Val1, Val2 } ...
19
votes
3answers
282 views

Strange GCC compile error (simple example included)

it's a pretty basic question but I don't understand why the code below does not compile on GCC 4.6.1. It does compile on VS 2008 with SP1: #include <iostream> class MyClass { public: const ...
18
votes
1answer
170 views

Can a static method in a derived class call a protected constructor in C++?

This code works with clang but g++ says: error: ‘A::A()’ is protected class A { protected: A() {} }; class B : public A { static A f() { return A(); } // GCC claims this is an error }; ...
17
votes
2answers
118 views

Sealed keyword affects the compiler's opinion on a cast

I have a situation where I'd like the behaviour of the compiler explained. Given a little code: interface IFoo<T> { T Get(); } class FooGetter : IFoo<int> { public int Get() ...
17
votes
5answers
598 views

Why vector<bool>::reference doesn't return reference to bool?

#include <vector> struct A { void foo(){} }; template< typename T > void callIfToggled( bool v1, bool &v2, T & t ) { if ( v1 != v2 ) { v2 = v1; ...
17
votes
3answers
235 views

Non-pointer typedef of member functions not allowed?

After getting an answer to this question I discovered there are two valid ways to typedef a function pointer. typedef void (Function) (); typedef void (*PFunction) (); void foo () {} Function * p = ...
16
votes
5answers
2k views

Deciphering C++ template error messages

I'm really beginning to understand what people mean when they say that C++'s error messages are pretty terrible in regards to templates. I've seen horrendously long errors for things as simple as a ...
15
votes
2answers
333 views

Why does “for I := 0to aList.Count-1 do” work with a missing space?

I was writing a small console application in Delphi (XE), and by mistake wrote for I := 0to aList.Count-1 do //Note the missing space between "0" and "to" I didn't notice this until after I had run ...
15
votes
3answers
856 views

Multiple wildcards on a generic methods makes Java compiler (and me!) very confused

Let's first consider a simple scenario (see complete source on ideone.com): import java.util.*; public class TwoListsOfUnknowns { static void doNothing(List<?> list1, List<?> list2) ...
15
votes
4answers
925 views

Public operator new, private operator delete: getting C2248 “can not access private member” when using new

A class has overloaded operators new and delete. new is public, delete is private. When constructing an instance of this class, I get the following error: pFoo = new Foo(bar) example.cpp(1): error ...
14
votes
3answers
219 views

What Scala annotations modify the compiler's messages?

I know about two: @deprecated("use blabla instead") is used to add an explanation to the warning output by the compiler when the annotated definition is used in client code. @implicitNotFound(msg = ...
13
votes
4answers
247 views

Implicit conversion issue in a ternary condition [closed]

Possible Duplicate: Conditional operator cannot cast implicitly? Why does null need an explicit type cast here? I've had a search and haven't found a good explanation for why the ...
12
votes
14answers
4k views

Is JS lint available for offline use?

I'd like to use JSLint but am wary of tools that have access to my unfiltered source-code. Is there an offline version or is there another similar tool that does "lint error checking" for JavaScript ...
11
votes
5answers
252 views

compile jdk via ant

I want to compile jdk files in order to include debug infromation. I'd like to use ant, because it's included in my NetBeans environement, so i've done the following: unzipped /src.zip in a tmp ...
11
votes
1answer
306 views

Initializing a static const array of const strings in C++

I am having trouble initializing a constant array of constant strings. From week.h (showing only relevant parts): class Week { private: static const char *const *days = { "mon", "tue", "wed", ...
10
votes
2answers
118 views

Why do properties of attributes have to be readable?

Consider the following attribute. internal class NiceAttribute : Attribute { private string _stuff; public string Stuff { set { _stuff = value; } } } When I try to use the attribute ...
10
votes
9answers
1k views

“Variable Undeclared” error when compiling to iOS Device, but not for Simulator

I have an custom UIVIewController that is the base class for other controllers and has an instance of a custom UIView variable that is accessed by inherited the classes. BaseViewController.h ...
10
votes
5answers
3k views

linux kernel module linker warnings: “*** Warning: <function> [<module>] undefined!” - any way to get rid of them?

While compiling Linux kernel modules that depend on each other, linker gives undefined symbol warnings like Building modules, stage 2. MODPOST *** Warning: "function_name1" [module_name] ...
10
votes
7answers
7k views

Compilation fails randomly: “cannot open program database”

During a long compilation with Visual Studio 2005 (version 8.0.50727.762), I sometimes get the following error in several files in some project: fatal error C1033: cannot open program database ...
9
votes
2answers
322 views

type safety in clojure

I want to ask what sort of type safety languages constructs are there on Clojure? I've read 'Practical Clojure' from Luke VanderHart and Stuart Sierra several times now, but i still have the distinct ...
9
votes
3answers
5k views

Visual Studio registry capture utility has stopped working, error compiling C# project in Windows7

Windows 7 Shows build error like below everytime I compile my project.
9
votes
2answers
3k views

“Unrecoverable build error” on any MSI Setup project

Some time ago I got this error when building ANY Visual Studio Deployment project. "Unrecoverable build error" I thought my VS installation was corrupted or I deleted some important files, but ...
8
votes
2answers
94 views

GCC compiler error when extracting a char from a temporary stream

I'm trying to read a single character from a stream. With the following code I get a "ambiguous overload" compiler error (GCC 4.3.2, and 4.3.4). What I'm doing wrong? #include <iostream> ...
8
votes
3answers
812 views

Generics compiles and runs in Eclipse, but doesn't compile in javac

Note: This is a spin-off from Comparable and Comparator contract with regards to null This code compiles and runs fine in Eclipse (20090920-1017) import java.util.*; public class SortNull { ...
8
votes
2answers
132 views

'Lexical' scoping of type parameters in C#

I have 2 scenarios. This fails: class F<X> { public X X { get; set; } } error CS0102: The type 'F<X>' already contains a definition for 'X' This works: class F<X> { class ...
8
votes
2answers
559 views

Compile redeclaration error of global variable in C++, but not in C

Suppose that I have those three files: a.h //a.h header #include <stdio.h> int int_variable; void a_f() { printf("int_variable: %d\n", int_variable) int_variable++; } b.h //b.h ...
8
votes
7answers
3k views

“code too large” compilation error in java

Is there any maximum size for code in java.. i wrote a function with more than 10,000 lines. Actually , each line assigns a value to an array variable.. arts_bag[10792]="newyorkartworld"; ...
8
votes
3answers
188 views

Why compiler behaves differently with this code?

In C#, the following method will not compile: public bool IsItTrue() { } The compiler errors : 'IsItTrue()': not all code paths return a value, which makes perfect sense. But the following compile ...
8
votes
4answers
905 views

Why compiler is not giving error when signed value is assigned to unsigned integer? - C++

I know unsigned int can't hold negative values. But the following code compiles without any errors/warnings. unsigned int a = -10; When I print the variable a, I get a wrong value printed. If ...
8
votes
5answers
3k views

Events in lambda expressions - C# compiler bug?

I was looking at using a lamba expression to allow events to be wired up in a strongly typed manner, but with a listener in the middle, e.g. given the following classes class Producer { public ...
7
votes
2answers
202 views

“not declared in this scope” error with templates and inheritance

Here is code sample which reproduces my problem: template <typename myType> class Base { public: Base() {} virtual ~Base() {} protected: int myOption; virtual void set() = 0; }; ...
7
votes
1answer
1k views

“Data Model Version Compile”.. error after upgrading to Lion (Xcode4.1)

Since upgrading to Lion yesterday (10.6->10.7), I've been unable to compile a project that had no problems compiling prior to the upgrade. It's not even a recent change to the project that's causing ...
7
votes
4answers
194 views

How can there be ambiguity between a property getter and a method with one argument?

I can't believe I've never come across this before, but why am I getting a compiler error for this code? public class Main { public Main() { var ambiguous = new FooBar(1); var ...
7
votes
6answers
535 views

Strange error regarding instance variables & superclass

I've got some code where my classes inherit from a superclass, and everything has been working fine till now. I'm getting an error whenever I try to use any of the superclass variables, saying that ...
7
votes
1answer
671 views

VS 2010 loading slow - Xap packaging failed. Exception of type 'System.OutOfMemoryException' was thrown

I'm having an issue with VS 2010. It's running very slow and also crashes occasionally when compiling and packaging a xap file with the following error: Xap packaging failed. Exception of type ...
7
votes
4answers
2k views

javac error: inconvertible types with generics?

There are several other SO questions talking about generics compiling OK w/ Eclipse's compiler but not javac (this and this and this) -- however this looks like a slightly different one. I have an ...
7
votes
2answers
276 views

C++ : Interix signals

How to compile/ use signals on the Interix platform? I am unable to get it to compile because Interix appears to be non-POSIX compliant, at least in its implementation of signal.h. If anyone has ...
7
votes
2answers
428 views

Why Does C# Not Bind Correctly to Generic Overridden Methods?

I have defined the following classes and methods: using System; using System.Linq.Expressions; using System.Windows.Forms; public class ReturnValue<T, S> {} public class ...
7
votes
1answer
268 views

Delphi 2010 compiler warning about instantiation of abstract class should be a compiler error

Is there any compiler options that let the compiler give me an error instead of a warning when i instantiate an abstract class? Foo = class procedure Bar; virtual; abstract; end; var f : ...
7
votes
5answers
307 views

Why is initialization of integer member variable (which is not const static) not allowed in C++?

My C++ compiler complains when i try to initialize a int member variable in class definition. It tells "only static const integral data members can be initialized within a class". Can you please ...

1 2 3 4 5 35