summaryrefslogtreecommitdiff
path: root/cpp/src/Slice/GrammarUtil.h
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2002-07-08 07:10:08 +0000
committerMichi Henning <michi@zeroc.com>2002-07-08 07:10:08 +0000
commit744e044abfaad2976a27fe1d45c528fb86dd661a (patch)
tree0017f272583b8d5dd8935e67f343d35d6d9d43b2 /cpp/src/Slice/GrammarUtil.h
parentFinal tidy-up of stringToInt64(). (diff)
downloadice-744e044abfaad2976a27fe1d45c528fb86dd661a.tar.bz2
ice-744e044abfaad2976a27fe1d45c528fb86dd661a.tar.xz
ice-744e044abfaad2976a27fe1d45c528fb86dd661a.zip
Changed parser to use new strToInt64() function. Makes for much cleaner
code.
Diffstat (limited to 'cpp/src/Slice/GrammarUtil.h')
-rw-r--r--cpp/src/Slice/GrammarUtil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/GrammarUtil.h b/cpp/src/Slice/GrammarUtil.h
index a3fc29b74d2..e3204a85047 100644
--- a/cpp/src/Slice/GrammarUtil.h
+++ b/cpp/src/Slice/GrammarUtil.h
@@ -98,7 +98,7 @@ class SLICE_API IntegerTok : public GrammarBase
public:
IntegerTok() { }
- Long v;
+ IceUtil::Int64 v;
};
// ----------------------------------------------------------------------