Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set minimum C and C++ standard versions.
Fixed width integer types (like `int64_t`) are currently used in C and in C++ source files. These types were added in C99 or C++11, respectively. Most compilers default to newer versions of the standard by now. But some compilers that are old or follow a more conservative approach (like Apple Clang that still defaults to C++98 iiuc) might need extra flags to enable features from newer standards. Set the minimum C and C++ standard versions to C99 and C++11 in the CMake build rules, respectively.
- Loading branch information