diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2008-10-28 11:20:06 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2008-10-28 11:20:06 -0230 |
commit | af0ffea30bc1e63a0c5ae5837926d9fb8f8205e8 (patch) | |
tree | 1970e7e13642fdd26eeaf0d46634427c7b54e8f6 /cpp/demo/IceGrid/simple/HelloI.cpp | |
parent | Bug 3460 - BasicStream.reset set _sliceObjects to true (diff) | |
download | ice-af0ffea30bc1e63a0c5ae5837926d9fb8f8205e8.tar.bz2 ice-af0ffea30bc1e63a0c5ae5837926d9fb8f8205e8.tar.xz ice-af0ffea30bc1e63a0c5ae5837926d9fb8f8205e8.zip |
Bug 3486 - Remove unecessary "cpp:const"
Diffstat (limited to 'cpp/demo/IceGrid/simple/HelloI.cpp')
-rw-r--r-- | cpp/demo/IceGrid/simple/HelloI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/demo/IceGrid/simple/HelloI.cpp b/cpp/demo/IceGrid/simple/HelloI.cpp index d92675288cf..94eed3ba46e 100644 --- a/cpp/demo/IceGrid/simple/HelloI.cpp +++ b/cpp/demo/IceGrid/simple/HelloI.cpp @@ -17,7 +17,7 @@ HelloI::HelloI(const string& name) : _name(name) } void -HelloI::sayHello(const Ice::Current&) const +HelloI::sayHello(const Ice::Current&) { cout << _name << " says Hello World!" << endl; } |