summaryrefslogtreecommitdiff
path: root/ace/ARGV.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/ARGV.h')
-rw-r--r--ace/ARGV.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/ARGV.h b/ace/ARGV.h
index cbb1f9a3f8a..32b4a2e56ae 100644
--- a/ace/ARGV.h
+++ b/ace/ARGV.h
@@ -88,7 +88,7 @@ public:
ACE_TCHAR **argv (void);
/// Returns <argc>.
- size_t argc (void) const;
+ int argc (void) const;
/// Returns the <buf>. Caller should not delete this memory since
/// the <ARGV> destructor will delete it.
@@ -147,7 +147,7 @@ private:
int state_;
/// Number of arguments in the ARGV array.
- size_t argc_;
+ int argc_;
/// The array of string arguments.
ACE_TCHAR **argv_;