diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:19:07 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-29 19:19:07 +0000 |
commit | fd5c345a0e5b18206adc65a9a9f5ab3b5e4d7bd3 (patch) | |
tree | e47b91c1f83bded39ff1cfc35a381ab0b9b2b96d | |
parent | 59ee43662a3fa5e4dbedabdf69dce60026158d51 (diff) | |
download | external_llvm-fd5c345a0e5b18206adc65a9a9f5ab3b5e4d7bd3.zip external_llvm-fd5c345a0e5b18206adc65a9a9f5ab3b5e4d7bd3.tar.gz external_llvm-fd5c345a0e5b18206adc65a9a9f5ab3b5e4d7bd3.tar.bz2 |
Put the lib/System interface functions in llvm::sys namespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/System/Signals.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/System/Signals.h b/include/llvm/System/Signals.h index 9f4c00a..7e80cb8 100644 --- a/include/llvm/System/Signals.h +++ b/include/llvm/System/Signals.h @@ -18,6 +18,7 @@ #include "llvm/System/Path.h" namespace llvm { +namespace sys { /// This function registers signal handlers to ensure that if a signal gets /// delivered that the named file is removed. @@ -35,6 +36,7 @@ namespace llvm { /// @brief Print a stack trace if a fatal signal occurs. void PrintStackTraceOnErrorSignal(); +} // End sys namespace } // End llvm namespace #endif |