From baf79303423cdfbc4f0351415e8569f5a90444d7 Mon Sep 17 00:00:00 2001 From: ripley Date: Tue, 4 Feb 2025 14:37:34 +0000 Subject: [PATCH] MAYBE was misleadeing, and has misled git-svn-id: https://svn.r-project.org/R/trunk@87684 00db46b3-68df-0310-9c12-caf00c1e9a41 --- src/include/R_ext/Boolean.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/include/R_ext/Boolean.h b/src/include/R_ext/Boolean.h index 56bce4e4a0b..6a8d13aca9c 100644 --- a/src/include/R_ext/Boolean.h +++ b/src/include/R_ext/Boolean.h @@ -1,6 +1,6 @@ /* * R : A Computer Language for Statistical Data Analysis - * Copyright (C) 2000, 2001 The R Core Team. + * Copyright (C) 2000, 2025 The R Core Team. * * This header file is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by @@ -32,8 +32,7 @@ #ifdef __cplusplus extern "C" { #endif -typedef enum { FALSE = 0, TRUE /*, MAYBE */ } Rboolean; - + typedef enum { FALSE = 0, TRUE } Rboolean; // so NOT NA #ifdef __cplusplus } #endif