From: solar Date: Fri, 2 Dec 2005 10:52:00 +0000 (+0000) Subject: Some non-7-bit chars have crept in. Fixed. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3b35e8c0b488adadbdce7e4d70ad10883f9057e6;p=fw%2Fpdclib Some non-7-bit chars have crept in. Fixed. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@77 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/includes/iso646.h b/includes/iso646.h index 48ca809..ed6dce2 100644 --- a/includes/iso646.h +++ b/includes/iso646.h @@ -15,13 +15,13 @@ #define and_eq &= #define bitand & #define bitor | -#define compl ˜ +#define compl ~ #define not ! #define not_eq != #define or || #define or_eq |= -#define xor ˆ -#define xor_eq ˆ= +#define xor ^ +#define xor_eq ^= #endif