summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:58:38 -0400
committerRico Antonio Felix <ricoantoniofelix@yahoo.com>2015-06-23 21:58:38 -0400
commitf124eb439a29fce17336b0c279c25446d9eeafe1 (patch)
tree87914e2c5420c0a2a3abad6ba8098d7fc2ee55d3
parentca3f944f2c1aed9359ddc80e1c4d488a49433957 (diff)
Corrected API documentation for std::shared_ptr<ConstantImpl>
Constant::_impl
-rw-r--r--include/constant.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/constant.h b/include/constant.h
index faac3df..571430b 100644
--- a/include/constant.h
+++ b/include/constant.h
@@ -125,7 +125,9 @@ public:
private:
/**
* Pointer to the actual implementation of the constant
- * @var std::shared_ptr
+ *
+ * @var std::shared_ptr Pointer to the constant implementation containing
+ * distributed ownership properties
*/
std::shared_ptr<ConstantImpl> _impl;