Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: SharedObject.h
- Revision:
- 1:fe38610c777b
- Parent:
- 0:6c75b6083087
- Child:
- 2:16cab88c1203
diff -r 6c75b6083087 -r fe38610c777b SharedObject.h
--- a/SharedObject.h Fri Jul 19 03:28:14 2013 +0000
+++ b/SharedObject.h Fri Jul 19 04:47:19 2013 +0000
@@ -31,11 +31,11 @@
/** Sets the specified value_destination with the value of the shared resource.
*/
- inline void get (T& value_destination) const;
+ void get (T& value_destination) const;
/** Sets the value of the shared resource with the specified new_value.
*/
- inline void set (const T& new_value);
+ void set (const T& new_value);
};