Issue640

Title adopt some entries in "How to C in 2016"
Priority wish Status resolved
Superseder Nosy List malte, masataro
Assigned To Keywords
Optional summary

Created on 2016-03-20.02:46:08 by masataro, last changed by malte.

Messages
msg5200 (view) Author: malte Date: 2016-03-21.12:12:21
C and C++ are not the same programming languages, and advice for C is not
necessarily appropriate for C++. We follow standard C++, which e.g., doesn't
include "#pragma once". As another example, C++ code usually doesn't use
printf-style formatting as in "%zu" due to its lack of type-safety.

Generally speaking, please be aware that massive code changes such as changing
all integer types has a significant cost in testing, maintenance, making merges
difficult etc., and we generally do not perform them without really being sure
that they have a large benefit.
msg5193 (view) Author: masataro Date: 2016-03-20.02:46:08
https://matt.sh/howto-c

standard types in stdint.h
uintptr_t, ptrdiff_t
size_t - %zu
#pragma once , not #ifndef PROJECT_HEADERNAME
History
Date User Action Args
2016-03-21 12:12:21maltesetstatus: unread -> resolved
nosy: + malte
messages: + msg5200
2016-03-20 02:46:08masatarocreate