From 0a293ba91008dda0b8fec0befe6037bc42435e79 Mon Sep 17 00:00:00 2001 From: "kevin.larke" Date: Tue, 31 Mar 2020 12:47:37 -0400 Subject: [PATCH] cwCommon.h Added kLabelNotFouncRC and kDuplicateRC, --- cwCommon.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cwCommon.h b/cwCommon.h index d63fb4d..8fc56c1 100644 --- a/cwCommon.h +++ b/cwCommon.h @@ -38,8 +38,10 @@ namespace cw kOpFailRC, // 19 kSyntaxErrorRC, // 20 kBufTooSmallRC, // 21 - kAssertFailRC, // 22 - used with cwLogFatal - kBaseAppRC // 23 + kLabelNotFoundRC, // 22 - use by cwObject to indicate that an optional value does not exist. + kDuplicateRC, // 23 - an invalid duplicate was detected + kAssertFailRC, // 24 - used with cwLogFatal + kBaseAppRC // 25 } cwRC_t; typedef unsigned rc_t;