summaryrefslogtreecommitdiff
path: root/cpp/src/slice2html/Gen.h
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2007-02-06 00:38:49 +0000
committerBrent Eagles <brent@zeroc.com>2007-02-06 00:38:49 +0000
commit193a03a2e0987442269f8498a986cb8354c75721 (patch)
tree73ac99a76cee5812e7b82738ddf6e3410f771da4 /cpp/src/slice2html/Gen.h
parentAdded Ruby (diff)
downloadice-193a03a2e0987442269f8498a986cb8354c75721.tar.bz2
ice-193a03a2e0987442269f8498a986cb8354c75721.tar.xz
ice-193a03a2e0987442269f8498a986cb8354c75721.zip
fix x64 warnings
Diffstat (limited to 'cpp/src/slice2html/Gen.h')
-rw-r--r--cpp/src/slice2html/Gen.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/slice2html/Gen.h b/cpp/src/slice2html/Gen.h
index 88abf9651e3..a2cf62b692d 100644
--- a/cpp/src/slice2html/Gen.h
+++ b/cpp/src/slice2html/Gen.h
@@ -57,8 +57,8 @@ protected:
void printLogo(const ContainedPtr&, const ContainerPtr&, bool);
::std::string toString(const SyntaxTreeBasePtr&, const ContainerPtr&, bool = true, bool = false,
- unsigned* = 0, bool = false);
- ::std::string toString(const ::std::string&, const ContainerPtr&, bool = true, bool = false, unsigned* = 0);
+ size_t* = 0, bool = false);
+ ::std::string toString(const ::std::string&, const ContainerPtr&, bool = true, bool = false, size_t* = 0);
::std::string getComment(const ContainedPtr&, const ContainerPtr&, bool, bool = false);
static ::std::string getAnchor(const SyntaxTreeBasePtr&);
@@ -70,8 +70,8 @@ protected:
::IceUtil::XMLOutput& _out;
- static unsigned _indexCount;
- static unsigned _warnSummary;
+ static size_t _indexCount;
+ static size_t _warnSummary;
private: