aboutsummaryrefslogtreecommitdiffstats
path: root/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'jrt_test/src/jrt-test/simpleserver/simpleserver.cpp')
-rw-r--r--jrt_test/src/jrt-test/simpleserver/simpleserver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
index a0781ee4720..89d8cd881a8 100644
--- a/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
+++ b/jrt_test/src/jrt-test/simpleserver/simpleserver.cpp
@@ -14,19 +14,19 @@ public:
{
FRT_ReflectionBuilder rb(s);
//---------------------------------------------------------------------
- rb.DefineMethod("inc", "i", "i", true,
+ rb.DefineMethod("inc", "i", "i",
FRT_METHOD(Server::rpc_inc), this);
rb.MethodDesc("Increase an integer value");
rb.ParamDesc("value", "initial value");
rb.ReturnDesc("result", "value + 1");
//---------------------------------------------------------------------
- rb.DefineMethod("blob", "x", "x", true,
+ rb.DefineMethod("blob", "x", "x",
FRT_METHOD(Server::rpc_blob), this);
rb.MethodDesc("Send a copy of a blob back to the client");
rb.ParamDesc("blob", "the original blob");
rb.ReturnDesc("blob", "a copy of the original blob");
//---------------------------------------------------------------------
- rb.DefineMethod("test", "iib", "i", true,
+ rb.DefineMethod("test", "iib", "i",
FRT_METHOD(Server::rpc_test), this);
rb.MethodDesc("Magic test method");
rb.ParamDesc("value", "the value");