summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-06-27 12:56:34 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-06-27 12:56:34 +0000
commit5dcec76118ddb4483658489226ea36fe0cef0d82 (patch)
tree97e8a53132b43019fb9712b00c423f5c64fc6d57
parent329cfd656575f600dc38e133bca6ce15439606eb (diff)
downloadATCD-5dcec76118ddb4483658489226ea36fe0cef0d82.tar.gz
ChangeLogTag: Fri Jun 27 12:49:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACEXML/ChangeLog7
-rw-r--r--ACEXML/parser/parser/Entity_Manager.h2
-rw-r--r--ACEXML/parser/parser/Entity_Manager.i2
-rw-r--r--ChangeLog12
-rw-r--r--ace/Process.h3
5 files changed, 21 insertions, 5 deletions
diff --git a/ACEXML/ChangeLog b/ACEXML/ChangeLog
index 8dfc87bd26b..49e4262ff7a 100644
--- a/ACEXML/ChangeLog
+++ b/ACEXML/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jun 27 12:55:33 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * parser/parser/Entity_Manager.h:
+ * parser/parser/Entity_Manager.i:
+ Removed not useful const return qualifier to resolve intel
+ compiler warnings.
+
Thu Jun 26 01:47:03 UTC 2003 Don Hinton <dhinton@dresystems.com>
* parser/parser/Parser.i:
diff --git a/ACEXML/parser/parser/Entity_Manager.h b/ACEXML/parser/parser/Entity_Manager.h
index dfe084ad973..b627683888b 100644
--- a/ACEXML/parser/parser/Entity_Manager.h
+++ b/ACEXML/parser/parser/Entity_Manager.h
@@ -80,7 +80,7 @@ public:
ACEXML_Char*& publicId);
/// Number of items in the Entity Manager
- const size_t size(void) const;
+ size_t size(void) const;
/// Reset the state
int reset (void);
diff --git a/ACEXML/parser/parser/Entity_Manager.i b/ACEXML/parser/parser/Entity_Manager.i
index 24b507eb96a..cb3d004e98d 100644
--- a/ACEXML/parser/parser/Entity_Manager.i
+++ b/ACEXML/parser/parser/Entity_Manager.i
@@ -49,7 +49,7 @@ ACEXML_Entity_Manager::reset (void)
}
-ACEXML_INLINE const size_t
+ACEXML_INLINE size_t
ACEXML_Entity_Manager::size (void) const
{
return this->entities_.current_size();
diff --git a/ChangeLog b/ChangeLog
index 491f0cdb683..8e6aeade7b0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri Jun 27 12:52:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * ace/Process.h:
+ Added forward declaration of ACE_Time_Value to fix compile
+ erros in Jaws server app.
+
Thu Jun 26 21:34:43 2003 Chris Cleeland <cleeland_c@ociweb.com>
* ace/QtReactor.cpp: Removed precompiled header include residue
@@ -69,7 +75,7 @@ Wed Jun 25 17:00:00 2003 Justin Michel <michel_j@ociweb.com>
* bin/MakeProjectCreator/templates/vc6dsp.mpd:
* bin/MakeProjectCreator/templates/vc7.mpd:
- Fixes for various mpc generation problems.
+ Fixes for various mpc generation problems.
Wed Jun 25 13:14:00 2003 Justin Michel <michel_j@ociweb.com>
@@ -82,11 +88,11 @@ Wed Jun 25 13:14:00 2003 Justin Michel <michel_j@ociweb.com>
Wed Jun 25 12:45:44 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>
- * bin/topinfo_iorsize_stats.sh (s_id):
+ * bin/topinfo_iorsize_stats.sh (s_id):
* bin/topinfo_simple_stats.sh: We used 'top' to determine the
runtime memory used by the process. A better way to get this
done is to use /proc/processid/status. The scripts have been
- changed to use the proc info instead of 'top'.
+ changed to use the proc info instead of 'top'.
Wed Jun 25 11:00:00 2003 Justin Michel <michel_j@ociweb.com>
diff --git a/ace/Process.h b/ace/Process.h
index abd07e63648..f0a8cf9eb80 100644
--- a/ace/Process.h
+++ b/ace/Process.h
@@ -23,6 +23,9 @@
#include "ace/Handle_Set.h"
#include "ace/os_include/sys/os_types.h"
+// Forward declaration
+class ACE_Time_Value;
+
/**
* @class ACE_Process_Options
*