From 015b348b8b764ec1f6dd755bab966bdbd70c5e98 Mon Sep 17 00:00:00 2001 From: vlefevre Date: Tue, 7 Nov 2017 09:14:30 +0000 Subject: [src/mpfr.h] mpfr_free_cache_t: added comments to show that these are flags. git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@11802 280ebfd0-de03-0410-8827-d642c229c3f4 --- src/mpfr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mpfr.h') diff --git a/src/mpfr.h b/src/mpfr.h index f942e0af9..5c23afaf1 100644 --- a/src/mpfr.h +++ b/src/mpfr.h @@ -246,8 +246,8 @@ typedef enum { /* Free cache policy */ typedef enum { - MPFR_FREE_LOCAL_CACHE = 1, - MPFR_FREE_GLOBAL_CACHE = 2 + MPFR_FREE_LOCAL_CACHE = 1, /* 1 << 0 */ + MPFR_FREE_GLOBAL_CACHE = 2 /* 1 << 1 */ } mpfr_free_cache_t; /* GMP defines: -- cgit v1.2.1