diff options
author | Keuin <[email protected]> | 2022-05-27 19:56:07 +0800 |
---|---|---|
committer | Keuin <[email protected]> | 2022-05-27 19:56:07 +0800 |
commit | b3792188127e7c36f9bf8ae503ecf80ed42851d2 (patch) | |
tree | 9f1e0c43917195a03c94d15e523559e07a5483db | |
parent | aa5669f38abf6e45bf0d832c5be7c7100c024665 (diff) |
Switch to C11.
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 5bdfa5a..bde7774 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0) project(mobileqq_fp_cracker C) -set(CMAKE_C_STANDARD 99) +set(CMAKE_C_STANDARD 11) set(common_compiler_args "-Wall -Werror -Wno-unused") set(CMAKE_CXX_FLAGS_DEBUG "${common_compiler_args} -g -ggdb -fsanitize=address -DDEBUG") |