Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Static const data member defined in another file

I'm working on a static analyzer for C++11. There is an interaction between static const members of a class and linkage for which I am not sure whether it is defined. My static analyzer should warn for it only if this construct is not defined.

The example is this one:

in file f1.cpp:

struct Foo {
    static const int x = 2;
};

int main(void) {
    return *&Foo::x;
}

and in file f2.cpp:

struct Foo {
    static int x;
};

int Foo::x;

The two files compiled and linked with clang++ -std=c++11 -Weverything f1.cpp f2.cpp cause no warning and produce a binary that returns 0. The same files when compiled with g++ -std=c++11 -Wall -Wextra -pedantic f1.cpp f2.cpp cause no warning and return 2.

My intuition is that this program is ill-defined but no warning is required, as:

  • both names Foo::x have external linkage following N3376[basic.link]p5:

    In addition, a member function, static data member,[...] has the typedef name for linkage purposes (7.1.3), has external linkage if the name of the class has external linkage.

  • but they break the N3376[basic.link]p10 requirement:

    After all adjustments of types (during which typedefs (7.1.3) are replaced by their definitions), the types specified by all declarations referring to a given variable or function shall be identical [...] A violation of this rule on type identity does not require a diagnostic.

To be 100% sure about this, a definition for these "all adjustments of types" is needed, but seems nowhere to be found in the C++11 standard. Is there any, and is the reasoning above correct?

like image 336
Szm Avatar asked Mar 02 '17 12:03

Szm


People also ask

Can static members be const?

A static data member can be of any type except for void or void qualified with const or volatile. You cannot declare a static data member as mutable.

Can const and static used together?

So combining static and const, we can say that when a variable is initialized using static const, it will retain its value till the execution of the program and also, it will not accept any change in its value.

What is the difference between const and static const?

An instance const value can be computed in the ctor-initializer-list. A static const is set during startup initialization and remains unchanged for the rest of the program.

Is static the same as const?

A static keyword is been used to declare a variable or a method as static. A const keyword is been used to assign a constant or a fixed value to a variable. In JavaScript, the static keyword is used with methods and classes too. In JavaScript, the const keyword is used with arrays and objects too.


1 Answers

It's an ODR violation. The Foo type has different declarations in each file.

One definition says x is declared with external linkage (can be anything, determined when linking) and the other that it's a compile-time constant with value 2.

like image 108
Macke Avatar answered Nov 15 '22 11:11

Macke