diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-10 22:30:59 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-10 22:30:59 +0000 |
commit | fa8b7676a7d1aa93572fdc12cba2e4800d563f1a (patch) | |
tree | af5b10240dcbe549986ad5211867f6ecd32b0cc3 /TAO/tao/CDR.cpp | |
parent | 5f194b1f8fd771c2ea5fe548683ff48acebe0fed (diff) | |
download | ATCD-fa8b7676a7d1aa93572fdc12cba2e4800d563f1a.tar.gz |
ChangeLogTag:Fri Jul 10 17:29:25 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/CDR.cpp')
-rw-r--r-- | TAO/tao/CDR.cpp | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/TAO/tao/CDR.cpp b/TAO/tao/CDR.cpp index e65e7e7ebcf..04b486fc60a 100644 --- a/TAO/tao/CDR.cpp +++ b/TAO/tao/CDR.cpp @@ -37,60 +37,6 @@ # include "tao/CDR.i" #endif /* ! __ACE_INLINE__ */ -// This functions are private, so it is safe to declare them inline in -// the .cpp file, we still use the ACE_INLINE macro to support -// compilations without any inline code. - -ACE_INLINE -void CDR::swap_2 (const char *orig, char* target) -{ - target[1] = *orig++; - target[0] = *orig++; -} - -ACE_INLINE -void CDR::swap_4 (const char *orig, char* target) -{ - target [3] = *orig++; - target [2] = *orig++; - target [1] = *orig++; - target [0] = *orig++; -} - -ACE_INLINE -void CDR::swap_8 (const char *orig, char* target) -{ - target [7] = *orig++; - target [6] = *orig++; - target [5] = *orig++; - target [4] = *orig++; - target [3] = *orig++; - target [2] = *orig++; - target [1] = *orig++; - target [0] = *orig++; -} - -ACE_INLINE -void CDR::swap_16 (const char *orig, char* target) -{ - target [15] = *orig++; - target [14] = *orig++; - target [13] = *orig++; - target [12] = *orig++; - target [11] = *orig++; - target [10] = *orig++; - target [9] = *orig++; - target [8] = *orig++; - target [7] = *orig++; - target [6] = *orig++; - target [5] = *orig++; - target [4] = *orig++; - target [3] = *orig++; - target [2] = *orig++; - target [1] = *orig++; - target [0] = *orig++; -} - int CDR::grow (ACE_Message_Block *mb, size_t minsize) { |