diff options
Diffstat (limited to 'cli')
-rw-r--r-- | cli/cli.hpp | 4 | ||||
-rw-r--r-- | cli/cli_pager.hpp | 4 | ||||
-rw-r--r-- | cli/cli_resources.hpp | 4 | ||||
-rw-r--r-- | cli/cli_retrace.hpp | 4 | ||||
-rw-r--r-- | cli/pickle.hpp | 4 |
5 files changed, 5 insertions, 15 deletions
diff --git a/cli/cli.hpp b/cli/cli.hpp index 088f0e8c..81405651 100644 --- a/cli/cli.hpp +++ b/cli/cli.hpp @@ -25,8 +25,7 @@ * *********************************************************************/ -#ifndef _APITRACE_CLI_HPP_ -#define _APITRACE_CLI_HPP_ +#pragma once struct Command { @@ -52,4 +51,3 @@ extern const Command sed_command; extern const Command trace_command; extern const Command trim_command; -#endif /* _APITRACE_CLI_HPP_ */ diff --git a/cli/cli_pager.hpp b/cli/cli_pager.hpp index 95d98781..197d712f 100644 --- a/cli/cli_pager.hpp +++ b/cli/cli_pager.hpp @@ -24,12 +24,10 @@ **************************************************************************/ -#ifndef _CLI_PAGER_HPP_ -#define _CLI_PAGER_HPP_ +#pragma once void pipepager(void); -#endif /* _CLI_PAGER_HPP_ */ diff --git a/cli/cli_resources.hpp b/cli/cli_resources.hpp index ee3882be..27b883c3 100644 --- a/cli/cli_resources.hpp +++ b/cli/cli_resources.hpp @@ -23,8 +23,7 @@ * **************************************************************************/ -#ifndef _CLI_RESOURCES_HPP_ -#define _CLI_RESOURCES_HPP_ +#pragma once #include <stdlib.h> @@ -43,4 +42,3 @@ os::String findWrapper(const char *wrapperFilename, bool verbose = false); -#endif /* _CLI_RESOURCES_HPP_ */ diff --git a/cli/cli_retrace.hpp b/cli/cli_retrace.hpp index 0dfa823e..6df0fbe6 100644 --- a/cli/cli_retrace.hpp +++ b/cli/cli_retrace.hpp @@ -25,8 +25,7 @@ * *********************************************************************/ -#ifndef _CLI_RETRACE_HPP_ -#define _CLI_RETRACE_HPP_ +#pragma once #include <vector> @@ -43,4 +42,3 @@ executeRetrace(const std::vector<const char *> & opts, const char *traceName); -#endif /* _CLI_RETRACE_HPP_ */ diff --git a/cli/pickle.hpp b/cli/pickle.hpp index 20dbb13d..cbdacc2a 100644 --- a/cli/pickle.hpp +++ b/cli/pickle.hpp @@ -27,8 +27,7 @@ * Python pickle writer */ -#ifndef _PICKLE_HPP_ -#define _PICKLE_HPP_ +#pragma once #include <assert.h> #include <stddef.h> @@ -385,4 +384,3 @@ protected: } }; -#endif /* _Pickle_HPP_ */ |