From: Arnaud Giersch Date: Wed, 20 Nov 2013 20:52:25 +0000 (+0100) Subject: Return values. X-Git-Tag: v3_11_beta~261 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9c713ea3f0ceaed43e77ed42a0a8ba8e5aeab59d Return values. --- diff --git a/src/surf/vm_workstation.hpp b/src/surf/vm_workstation.hpp index 6d8d5521a0..ce78cc7376 100644 --- a/src/surf/vm_workstation.hpp +++ b/src/surf/vm_workstation.hpp @@ -115,9 +115,13 @@ public: //FIXME: remove void updateState(tmgr_trace_event_t event_type, double value, double date) { WorkstationCLM03Lmm::updateState(event_type, value, date); - }; - bool isUsed() {WorkstationCLM03Lmm::isUsed();}; - xbt_dict_t getProperties() {WorkstationCLM03Lmm::getProperties();}; + } + bool isUsed() { + return WorkstationCLM03Lmm::isUsed(); + } + xbt_dict_t getProperties() { + return WorkstationCLM03Lmm::getProperties(); + } ActionPtr execute(double size); };