From 975649ce5d18d40cfd2c6c5c80f8f7cdc1d76278 Mon Sep 17 00:00:00 2001 From: theoretical Date: Wed, 7 Jan 2015 13:47:13 -0500 Subject: [PATCH] real128: Replace header comment that inaccurately describes implementation --- include/fc/real128.hpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/fc/real128.hpp b/include/fc/real128.hpp index 17f20d7..3b66060 100644 --- a/include/fc/real128.hpp +++ b/include/fc/real128.hpp @@ -4,8 +4,9 @@ namespace fc { class variant; /** - * Provides 64.64 fixed point math operations - * based upon base 2^64-1 + * Provides fixed point math operations based on decimal fractions + * with 18 places. + * Delegates to fc::bigint for multiplication and division. */ class real128 {