For questions about the intricacies of formal or authoritative specifications of programming languages and environments.
13
votes
2answers
219 views
Requirements for std::ignore
C++11 introduces an object called std::ignore:
const /* unspecified */ ignore;
For brevity, let
typedef decltype(std::ignore) T;
From what I can tell, the only requirement for T is that it is ...
2
votes
2answers
47 views
Is support of Annex K in C11 required for a conforming implementation?
While answering a question that made use of some functions (sscanf_s and sprintf_s) that I thought were not standard C, Daniel Fischer brought to my attention that the functions in question were ...
3
votes
1answer
101 views
Exception safety of std::function
I tried without success to find if this code could throw an exception :
std::function<void(void)>f=[]{};
According to the standard, the copy or move constructor of std::function are not ...
12
votes
6answers
432 views
Is this[0] safe in C++?
This earlier question asks what this[0] means in C#. In C++, this[0] means "the zeroth element of the array pointed at by this."
Is it guaranteed to not cause undefined behavior in C++ to refer to ...
12
votes
2answers
254 views
Why must 'auto' declarations all be of the same type?
It appears that it is not allowed to declare multiple variables of distinct types using the auto keyword. I can't figure out the wording in the standard that would prevent it however.
auto i = 1, j = ...
4
votes
2answers
205 views
Are 'const' values inside a container actually disallowed?
Why can't I put structures with const values inside a container like std::vector? (I understand the technical reason the compiler is reporting, I'm just uncertain the compiler/collection should be ...
12
votes
3answers
191 views
Is vector::insert allowed to reserve only once and avoid further capacity checks?
vector::insert(dst_iterator, src_begin, src_end) (insert a range) can be optimized for random-access iterators to reserve the required capacity src_end - src_begin first, then perform the copy.
The ...
4
votes
1answer
110 views
Are C++ abstract classes incomplete types?
Incomplete types cannot be instantiated, and abstract classes (that is, those with pure virtual member functions) also cannot be instantiated.
struct incomplete_type;
struct abstract_class
{
...
7
votes
1answer
197 views
Why is `make_unique<T[N]>` disallowed?
Assume namespace std throughout.
The C++14 committee draft N3690 defines std::make_unique thus:
[n3690: 20.9.1.4]: unique_ptr creation [unique.ptr.create]
template ...
16
votes
1answer
190 views
Is the comma operator allowed in a constant-expression in C++11?
In the process of answering this question on SO for C++11, I realized that in C++03 (as well as in C) the use of the comma operator is explicitly forbidden in a constant-expression.
Paragraph 5.19/1 ...
1
vote
1answer
44 views
How is this constant expression evaluated?
when explaining constant expressions, the standard (well, draft N1570) gives thi "enlightening" example:
118)
Thus, in the following initialization,
static int i = 2 || 1 / 0;
the ...
13
votes
3answers
313 views
Are these null pointers, or are they pointers to address 0?
If I write
int zero = 0;
void *p1 = (void *)0;
void *p2 = (void *)(int)0;
void *p3 = (void *)(0 /*no-op, but does it affect the next zero?*/, 0);
void *p4 = (void *)zero; // For reference, this ...
1
vote
0answers
35 views
Strange wording in the standard, concerning comparrison of pointers
§6.5.8\6 (converning >, <, <=, >=)
If the expression P points to an element of an array object and the
expression Q points to the last element of the same array object, the
pointer ...
61
votes
1answer
1k views
Type of `this` in static member function?
In C++ 5.1.1/3 [expr.prim.general] it says:
The type and value category [of this] are defined within a static member function.
What does this mean? How is it relevant?
Note that:
this ...
3
votes
1answer
44 views
Does “external declaration or definition” not mean what I think?
17.6.2.2 Headers [using.headers]
3) A translation unit shall include a header only outside of any
external declaration or definition, and shall include the header
lexically before the first ...
4
votes
3answers
105 views
Does this abuse of function declarations invoke undefined behavior?
Consider the following program:
int main()
{
int exit();
((void(*)())exit)(0);
}
As you can see, exit is declared with the wrong return type, but is never called with the incorrect function ...
3
votes
1answer
89 views
libc++ std::istringstream doesn't thrown exceptions. Bug?
After configuring a std::istringstream to throw exceptions when failbit is set I get no exceptions happening with libc++ (this is under linux with libc++ compiled with support from libcxxrt). I ...
5
votes
1answer
134 views
C++11 name re-evaluation in completed scope of a class?
It says in C++ 3.3.7.2 [basic.scope.class]
A name N used in a class S shall refer to the same declaration in its context and when re-evaluated in the completed scope of S.
What is an example of ...
2
votes
5answers
80 views
Why is it called dynamic binding?
We use virtual to achieve dynamic binding in Cpp i.e. to decide at runtime which function has to be called based on the actual object created rather than the reference or the pointer variable.
class ...
-1
votes
1answer
84 views
Accessing buffer values via 2 differently typed pointers [duplicate]
I have two questions, a general one about pointer type-manipulation in general, and then one for a specific case I have.
What happens when you access a buffer of memory using pointers of different ...
11
votes
1answer
163 views
Use cases for std::add_const and similar
Some type transformations in <type_traits> can also be expressed using core language syntax (e.g. std::add_const<T>::type is/seems equivalent to const T). Dtto for ...
0
votes
1answer
17 views
During lvalue conversion, why is the & so special and | never mentioned?
Section §6.3.2.1 (page 72) explains that
An lvalue means an object i.e. piece of memory.
During evaluation of expressions, the objects are converted to their values i.e. become no longer ...
0
votes
2answers
98 views
Can std::chrono::system_clock::now() throw an exception?
I want to write a very portable code, and I need to call std::chrono::system_clock::now() in the initialization. Can this function throw an exception ?
In c++11 standard, there is no mention of that ...
6
votes
3answers
99 views
What is a composite type in C?
From §6.2.7.5 (page 66):
EXAMPLE Given the following two file scope declarations:
int f(int (*)(), double (*)[3]);
int f(int (*)(char *), double (*)[]);
The resulting composite type ...
0
votes
0answers
65 views
standards compliance and run time requirements [closed]
This is strictly about the C standard and a hypothetical compiler that implements it.
Let's assume I have a compiler that correctly accepts valid C programs as the C ISO standard defines them. It ...
11
votes
2answers
247 views
Are static class members guaranteed to be initialized before `main` is called?
Is there any guarantee that static class members are initialized before main is called?
1
vote
1answer
60 views
What is the significance of “A conforming compiler may choose not to implement non-normalized floating point numbers”?
ISO/IEC 9899:2011 §5.2.4.2.2 ¶10 (p48) says:
The presence or absence of subnormal numbers is characterized by the
implementation- defined values of FLT_HAS_SUBNORM, DBL_HAS_SUBNORM,
and ...
0
votes
2answers
41 views
How disrupting are interrupts to the context? How does one restore it?
§5.1.2.3.5
5 When the processing of the abstract machine is interrupted by
receipt of a signal, the values of objects that are neither lock-free
atomic objects nor of type volatile ...
3
votes
1answer
152 views
Are objects created before setjmp destructed?
In jpeglib, one has to use setjmp/longjmp to implement custom error handling.
There are lots of resources where it is said that setjmp/longjmp do not play well with c++ (for example answers in this ...
23
votes
3answers
581 views
reinterpret_cast between char* and std::uint8_t* - safe?
Now we all sometimes have to work with binary data. In C++ we work with sequences of bytes, and since the beginning char was the our building block. Defined to have sizeof of 1, it is the byte. And ...
6
votes
1answer
101 views
std::type_info<T>::hash_code() uniqueness and the meaning of “should”
Is it meant to be guaranteed that same std::type_info::hash_code() values imply same types?
Cplusplus.com seems to claim so:
This function returns the same value for any two type_info objects ...
4
votes
1answer
65 views
Is there a race condition in the `latch` sample in N3600?
Proposed for inclusion in C++14 (aka C++1y) are some new thread synchronization primitives: latches and barriers. The proposal is
N3600: C++ Latches and Barriers
N3666: C++ Latches and Barriers, ...
15
votes
1answer
161 views
Does int a=1, b=a++; invoke undefined behavior?
Does int a=1, b=a++; invoke undefined behavior? There is no sequence point intervening between the initialization of a and its access and modification in the initializer for b, but as far as I can ...
6
votes
2answers
100 views
Implicit instantiation of function templates when taking their address
Note: I've already looked here and I don't think the answer is right.
What are the rules governing the implicit instantiation of functions when taking their address? 14.7.1/9 of n3242 says this:
...
11
votes
2answers
394 views
Is the Committee Draft of Standard C++14 public?
As of last Saturday...
This afternoon in Bristol, UK, the ISO C++ standards committee adopted
generic lambdas, dynamic arrays (an improved version of C99 VLAs),
variable templates, ...
7
votes
2answers
175 views
Should break/continue/return be interrupted by an exception?
I came upon an interesting scenario with flow control while working on my language. What happens if an exception is thrown while processing a break statement. GCC seems to believe the break flow is ...
0
votes
2answers
83 views
HashCode - What will happen if equal object happened to hash in the same bucket?
I know this has been asked many times, but I can't find an exact answer to my question.
In chapter 3 of Effective Java, there is a scenario there that shows and explains why hashcode should be ...
9
votes
1answer
175 views
Is it legal to declare a constexpr initializer_list object?
As a question that came up during the discussion of this SO question:
Is it legal, maybe with N3471, to declare a constexpr std::initializer_list object? Example:
constexpr ...
4
votes
2answers
80 views
Does the array-to-pointer conversion annihilate the evaluation of the indirection operator?
In Find size of array without using sizeof, the size of an array is computed via
int arr[100];
printf ("%td", (&arr)[1] - arr);
Now, for the purposes of pointer arithmetic, arr is considered ...
15
votes
3answers
496 views
To what extent is C++ a statically-typed language?
I used to think that the answer to this question was "100%", but I've recently been pointed to an example that makes it worth thinking twice. Consider a C array declared as an object with automatic ...
0
votes
1answer
51 views
Does standard SQL allow grouping of union expressions?
I glanced at the SQL-92 standard, then at a SQL-92 grammar somebody put together but couldn't understand much.
As the SQL Server documentation reminds us, there are cases where the expressions should ...
1
vote
1answer
66 views
Can dup2 really return EINTR?
In the spec and two implementations:
According to POSIX, dup2() may return EINTR.
The linux man pages list it as permitted.
The FreeBSD man pages indicate it's not ever returned. Is this a bug - ...
37
votes
5answers
960 views
Are int8_t and uint8_t intended to behave like a character?
Given this C++11 program, should I expect to see a number or a letter? Or not make expectations?
#include <cstdint>
#include <iostream>
int main()
{
int8_t i = 65;
std::cout ...
7
votes
3answers
338 views
Does `decltype` give me an object's static type, or its runtime type?
[C++11: 7.1.6.2/4]: The type denoted by decltype(e) is defined as follows:
if e is an unparenthesized id-expression or an unparenthesized class member access (5.2.5), decltype(e) is the ...
10
votes
4answers
375 views
`y=++y`, is this standard compliant? [which appears in a test by Microsoft] [duplicate]
I know this looks familiar but it is brought to me as a problem in a test by Microsoft to recruit interns. It seems to me that y=++y is not standard compliant, but I think maybe it would be better to ...
16
votes
5answers
434 views
Can pointers be of different sizes? [duplicate]
This answer comes with an interesting statement - "on machines where int* is smaller than a char*". (let's exclude pointers to functions)
Is it possible for pointers to different types to have ...
1
vote
1answer
79 views
Are core bada interfaces built upon improper usage of C++ constructs?
Few years ago I was browsing through the just-released Samsung BADA SDK and related materials, and I was astonished by the amount 'tutorials' and 'guidelines' which tried to clarify various basic ...
10
votes
3answers
159 views
What is the C++ compiler required to do with ill-formed programs according to the Standard?
C++03 Standard defines well-formed program (1.3.14 [defns.well.formed]) as
a C++ program constructed according to the syntax rules, diagnosable semantic rules, and the One Definition Rule (3.2)
...
4
votes
2answers
153 views
Is C++ ASCII-aware?
A colleague told me:
C++ is not ASCII-aware.
The source character set of a C++ program is implementation-defined, so to what extent is my colleague incorrect?
8
votes
1answer
179 views
Why not modify key of associative container?
I know that it's a terrible idea to change the key of an object in an associative container, but I wonder where exactly the standard forbids me to do so. Consider:
#include <map>
#include ...






