diff options
Diffstat (limited to 'cpp/src/slice2vb/Gen.cpp')
-rwxr-xr-x | cpp/src/slice2vb/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2vb/Gen.cpp b/cpp/src/slice2vb/Gen.cpp index b30fae32c3e..f2dbc084451 100755 --- a/cpp/src/slice2vb/Gen.cpp +++ b/cpp/src/slice2vb/Gen.cpp @@ -2616,7 +2616,7 @@ Slice::Gen::TypesVisitor::visitConst(const ConstPtr& p) string name = fixId(p->name()); _out << sp << nl << "Public NotInheritable Class " << name; _out.inc(); - _out << nl << "ReadOnly " << name << " As " << typeToString(p->type()) << " = "; + _out << nl << "Public Const value As " << typeToString(p->type()) << " = "; BuiltinPtr bp = BuiltinPtr::dynamicCast(p->type()); if(bp && bp->kind() == Builtin::KindString) { |