Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

New posts in c++03

What restrictions does ISO C++03 place on structs defined at function scope?

c++ c++03

"Constant expressions" prior to C++11

Are static class members guaranteed to be initialized before `main` is called?

c++ language-lawyer c++03

Getting the type of a member

Will "&a+1 > &a" cause an undefined behaviour

c++ c c99 c++03

How can I deploy a C++11 program (with dependencies) on CentOS 6, whose GCC is C++03?

Does std::vector::resize() ever reallocate when new size is smaller than current size? [duplicate]

c++ c++11 std c++03 c++98

What's the difference in undefined behavior between C++03 and C++11?

Why do inline functions have external linkage by default?

c++ c++11 inline linkage c++03

How to break shared_ptr cyclic reference using weak_ptr

c++ smart-pointers c++03

Difference in c_str function specification between C++03 and C++11

c++ string c++11 c++03 c-str

How to write `is_complete` template?

c++ templates typetraits c++03

Do these members have unspecified ordering?

c++ c++11 c++03

Why doesn't PRIu64 work in this code?

c++ printf c++03

Why did C++11 make std::string::data() add a null terminating character?

c++ string c++11 stdstring c++03

Is it reasonable to use std::basic_string<t> as a contiguous buffer when targeting C++03?

c++ string winapi stl c++03

Union initialization in C++ and C

In which versions of the C++ standard does "(i+=10)+=10" have undefined behaviour?

Is value of x*f(x) unspecified if f modifies x?

What is the C++03 memory model for concurrency?