From fd39465fcfdcbf560fc158a239465b8e206debe8 Mon Sep 17 00:00:00 2001 From: Mark Spruiell Date: Mon, 31 Jul 2006 23:09:14 +0000 Subject: another enum fix --- cpp/src/Slice/RubyUtil.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/Slice/RubyUtil.cpp') diff --git a/cpp/src/Slice/RubyUtil.cpp b/cpp/src/Slice/RubyUtil.cpp index 374140bbff8..d3d66afb40b 100644 --- a/cpp/src/Slice/RubyUtil.cpp +++ b/cpp/src/Slice/RubyUtil.cpp @@ -624,13 +624,13 @@ Slice::Ruby::CodeVisitor::visitClassDefStart(const ClassDefPtr& p) switch((*s)->mode()) { case Operation::Normal: - _out << "::Ice::OperationMode.Normal"; + _out << "::Ice::OperationMode::Normal"; break; case Operation::Nonmutating: - _out << "::Ice::OperationMode.Nonmutating"; + _out << "::Ice::OperationMode::Nonmutating"; break; case Operation::Idempotent: - _out << "::Ice::OperationMode.Idempotent"; + _out << "::Ice::OperationMode::Idempotent"; break; } _out << ", " << ((p->hasMetaData("amd") || (*s)->hasMetaData("amd")) ? "true" : "false") << ", ["; -- cgit v1.2.3