diff options
author | Michi Henning <michi@zeroc.com> | 2002-07-09 01:20:30 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2002-07-09 01:20:30 +0000 |
commit | cf1e8965fee4efc3f188fae487fdf48e315aa60a (patch) | |
tree | 012e1cbc8285f79aeca6a9b0b818dca0b41aa6ed /cpp/test/Ice/exceptions/Test.ice | |
parent | Updated dependencies. (diff) | |
download | ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.bz2 ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.tar.xz ice-cf1e8965fee4efc3f188fae487fdf48e315aa60a.zip |
Got tripped up by the style guide again and change "_mem" to "Mem" :-)
Diffstat (limited to 'cpp/test/Ice/exceptions/Test.ice')
-rw-r--r-- | cpp/test/Ice/exceptions/Test.ice | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/exceptions/Test.ice b/cpp/test/Ice/exceptions/Test.ice index a20370be121..a6742e5f0d0 100644 --- a/cpp/test/Ice/exceptions/Test.ice +++ b/cpp/test/Ice/exceptions/Test.ice @@ -15,22 +15,22 @@ interface Thrower; exception A { - int a_mem; + int aMem; }; exception B extends A { - int b_mem; + int bMem; }; exception C extends B { - int c_mem; + int cMem; }; exception D { - int d_mem; + int dMem; }; interface Thrower |