summaryrefslogtreecommitdiff
path: root/TAO/tests
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests')
-rw-r--r--TAO/tests/IDL_Test/constants.idl6
1 files changed, 0 insertions, 6 deletions
diff --git a/TAO/tests/IDL_Test/constants.idl b/TAO/tests/IDL_Test/constants.idl
index c6c6023c5cf..46097f4f36d 100644
--- a/TAO/tests/IDL_Test/constants.idl
+++ b/TAO/tests/IDL_Test/constants.idl
@@ -1,4 +1,3 @@
-
//=============================================================================
/**
* @file constants.idl
@@ -8,7 +7,6 @@
* compiler. This test is to make sure the problems
* stay fixed.
*
- *
* @author Jeff Parsons <parsons@cs.wustl.edu> and TAO users.
*/
//=============================================================================
@@ -25,7 +23,6 @@ const char backslash = '\\';
// errors.
// octal escape sequences
-
const char oct_nought = '\000';
const char lucky = '\7';
const char square = '4';
@@ -33,7 +30,6 @@ const char blastoff = '\321';
const char max_char_oct = '\377';
// hex escape sequences
-
const char hex_nought ='\x0';
const char fingers = '\xA';
const char fortnight = '\xe';
@@ -57,7 +53,6 @@ const long long PAAA = 122192928000000000;
const long NAA = -1538947897;
// various uncommon but legal formats for floats and doubles
-
const float root_beer = .2;
const double bogey = .2;
const float trip = 2.;
@@ -75,7 +70,6 @@ const unsigned long mul1 = 0x80 * 0x70;
const unsigned long div1 = 99 / 12;
// The original Sun code for bitwise operators was broken.
-
const unsigned short stuff = ~0;
const unsigned long day = ~0;
const unsigned long drink = 1000000000 << 2;