diff options
-rw-r--r-- | ChangeLog | 19 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 19 | ||||
-rw-r--r-- | ace/Time_Value.h | 3 | ||||
-rw-r--r-- | ace/Time_Value.inl | 9 | ||||
-rwxr-xr-x | bin/.cvsignore | 2 | ||||
-rwxr-xr-x | tests/.cvsignore | 5 | ||||
-rwxr-xr-x | tests/log/.cvsignore | 1 |
7 files changed, 46 insertions, 12 deletions
diff --git a/ChangeLog b/ChangeLog index e75d2743380..fb2a1076bb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,22 @@ +Fri Sep 13 08:37:09 2002 Ossama Othman <ossama@uci.edu> + + * ace/Time_Value.h: + * ace/Time_Value.inl: + + Removed copy constructor. The default compiler-generated copy + constructor will do fine since ACE_Time_Value is a POD class. + This may also avoid potential confusion due to a missing + explicit assignment operator. The compiler-generated assignment + operator will suffice in this case, too. + + From Gonzalo Diethelm <gonzalo.diethelm@aditiva.com> + * bin/.cvsignore: + * tests/.cvsignore: + * tests/log/.cvsignore: + + Files to silence annoying CVS messages regarding generated files + it doesn't know about. + Fri Sep 13 08:57:03 2002 Chad Elliott <elliott_c@ociweb.com> * bin/MakeProjectCreator/USAGE: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index e75d2743380..fb2a1076bb7 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,22 @@ +Fri Sep 13 08:37:09 2002 Ossama Othman <ossama@uci.edu> + + * ace/Time_Value.h: + * ace/Time_Value.inl: + + Removed copy constructor. The default compiler-generated copy + constructor will do fine since ACE_Time_Value is a POD class. + This may also avoid potential confusion due to a missing + explicit assignment operator. The compiler-generated assignment + operator will suffice in this case, too. + + From Gonzalo Diethelm <gonzalo.diethelm@aditiva.com> + * bin/.cvsignore: + * tests/.cvsignore: + * tests/log/.cvsignore: + + Files to silence annoying CVS messages regarding generated files + it doesn't know about. + Fri Sep 13 08:57:03 2002 Chad Elliott <elliott_c@ociweb.com> * bin/MakeProjectCreator/USAGE: diff --git a/ace/Time_Value.h b/ace/Time_Value.h index 97d82ca67ee..a954d83cd50 100644 --- a/ace/Time_Value.h +++ b/ace/Time_Value.h @@ -125,9 +125,6 @@ public: /// Initializes the <ACE_Time_Value> object from a <timespec_t>. ACE_Time_Value (const timespec_t &t); - /// Copy constructor. - ACE_Time_Value (const ACE_Time_Value &tv); - # if defined (ACE_WIN32) /// Initializes the ACE_Time_Value object from a Win32 FILETIME ACE_Time_Value (const FILETIME &ft); diff --git a/ace/Time_Value.inl b/ace/Time_Value.inl index 7d4be4aafd8..7710c1e5880 100644 --- a/ace/Time_Value.inl +++ b/ace/Time_Value.inl @@ -151,15 +151,6 @@ ACE_Time_Value::usec (long usec) this->tv_.tv_usec = usec; } -// Initializes the ACE_Time_Value object from another ACE_Time_Value - -ACE_INLINE -ACE_Time_Value::ACE_Time_Value (const ACE_Time_Value &tv) - : tv_ (tv.tv_) -{ - // ACE_OS_TRACE ("ACE_Time_Value::ACE_Time_Value"); -} - ACE_INLINE ACE_Time_Value & ACE_Time_Value::operator *= (double d) { diff --git a/bin/.cvsignore b/bin/.cvsignore new file mode 100755 index 00000000000..9a0a734fc38 --- /dev/null +++ b/bin/.cvsignore @@ -0,0 +1,2 @@ +*.dll +*.ilk diff --git a/tests/.cvsignore b/tests/.cvsignore new file mode 100755 index 00000000000..bfe9b1ba53f --- /dev/null +++ b/tests/.cvsignore @@ -0,0 +1,5 @@ +*.ilk +*.pdb +*.plg +*.ncb +*.opt diff --git a/tests/log/.cvsignore b/tests/log/.cvsignore new file mode 100755 index 00000000000..397b4a7624e --- /dev/null +++ b/tests/log/.cvsignore @@ -0,0 +1 @@ +*.log |