The c++03 tag has no wiki summary.
2
votes
2answers
85 views
legacy code and exception handling
After some 'digging' into the dark corners of legacy code I've found class, which handles INI files. It does reading and writing to the file, but I haven't found any exception handling logic. What ...
3
votes
2answers
102 views
Custom nullptr_t class
I tried to write a nullptr_t class based on the official proposal to be used in C++03 only. The only differences with the proposal are that we can compare two nullptr_t instances and that it is ...
