From f06a841708b0de1fa30c6dc5bed5f19a9ec5548a Mon Sep 17 00:00:00 2001 From: Rico Antonio Felix Date: Tue, 23 Jun 2015 21:30:35 -0400 Subject: Added API documentation for Constant(const char*, int64_t) --- include/constant.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/constant.h b/include/constant.h index b2e3d21..6caaabf 100644 --- a/include/constant.h +++ b/include/constant.h @@ -52,6 +52,13 @@ public: * @param value Constant's value */ Constant(const char *name, int32_t value); + + /** + * Constructor to create a constant for a 64-bit integer + * + * @param name Constant's name + * @param value Constant's value + */ Constant(const char *name, int64_t value); Constant(const char *name, double value); Constant(const char *name, const char *value); -- cgit v1.2.3