My Project
exit_code.hpp
Go to the documentation of this file.
1 
28 #ifndef BSL_EXIT_CODE_HPP
29 #define BSL_EXIT_CODE_HPP
30 
31 #include "cstdint.hpp"
32 
33 namespace bsl
34 {
37 
39  constexpr exit_code exit_success{0};
40 
42  constexpr exit_code exit_failure{1};
43 }
44 
45 #endif
::int32_t int32
defines an 32bit signed integer
Definition: cstdint.hpp:40
constexpr exit_code exit_failure
represents a failed exit
Definition: exit_code.hpp:42
bsl::int32 exit_code
defines the exit code type
Definition: exit_code.hpp:36
constexpr exit_code exit_success
represents a successful exit
Definition: exit_code.hpp:39