From 4bb57a55a0c828dfce12e80651bcc37711335e12 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Tue, 8 May 2018 10:25:00 -0700 Subject: 4239 --- html/001help.cc.html | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'html/001help.cc.html') diff --git a/html/001help.cc.html b/html/001help.cc.html index de06a6e8..e8f19b3e 100644 --- a/html/001help.cc.html +++ b/html/001help.cc.html @@ -3,7 +3,7 @@ Mu - 001help.cc - + @@ -15,16 +15,16 @@ body { font-size: 12pt; font-family: monospace; color: #aaaaaa; background-color a { color:#eeeeee; text-decoration: none; } a:hover { text-decoration: underline; } * { font-size: 12pt; font-size: 1em; } -.CommentedCode { color: #6c6c6c; } -.PreProc { color: #800080; } -.LineNr { color: #444444; } .Constant { color: #00a0a0; } -.Delimiter { color: #800080; } .SalientComment { color: #00ffff; } -.Identifier { color: #c0a020; } -.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; } .Comment { color: #9090ff; } .Comment a { color:#0000ee; text-decoration:underline; } +.Delimiter { color: #800080; } +.LineNr { color: #444444; } +.Identifier { color: #c0a020; } +.Normal { color: #aaaaaa; background-color: #080808; padding-bottom: 1px; } +.PreProc { color: #800080; } +.CommentedCode { color: #6c6c6c; } .cSpecial { color: #008000; } --> @@ -219,19 +219,19 @@ if ('onhashchange' in window) { 157 sigaction(SIGABRT, &action, NULL); // assert() failure or integer overflow on linux (with -ftrapv) 158 sigaction(SIGILL, &action, NULL); // integer overflow on OS X (with -ftrapv) 159 } -160 void dump_and_exit(int sig, unused siginfo_t* dummy1, unused void* dummy2) { +160 void dump_and_exit(int sig, vestigial siginfo_t* dummy1, vestigial void* dummy2) { 161 switch (sig) { 162 case SIGABRT: -163 #ifndef __APPLE__ +163 #ifndef __APPLE__ 164 cerr << "SIGABRT: might be an integer overflow if it wasn't an assert() failure or exception\n"; 165 _Exit(1); -166 #endif +166 #endif 167 break; 168 case SIGILL: -169 #ifdef __APPLE__ +169 #ifdef __APPLE__ 170 cerr << "SIGILL: most likely caused by integer overflow\n"; 171 _Exit(1); -172 #endif +172 #endif 173 break; 174 default: 175 break; @@ -318,7 +318,7 @@ if ('onhashchange' in window) { 256 #include <string> 257 using std::string; 258 -259 #define unused __attribute__((unused)) +259 #define vestigial __attribute__((unused)) 260 261 #include <algorithm> 262 using std::min; -- cgit 1.4.1-2-gfad0