From 8652031569195a81dee585353c199c63c674df48 Mon Sep 17 00:00:00 2001 From: Jason Christopherson Date: Tue, 1 Jun 2021 07:55:15 -0500 Subject: [PATCH] Add error flags --- src/fcore_constants.f90 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fcore_constants.f90 b/src/fcore_constants.f90 index 869d80c..4dbb0ec 100644 --- a/src/fcore_constants.f90 +++ b/src/fcore_constants.f90 @@ -31,4 +31,7 @@ module fcore_constants integer(int32), parameter :: FCORE_DATA_TYPE_ERROR = 10009 !> @brief Occurs if an attempt to write to a null reference is made. integer(int32), parameter :: FCORE_NULL_REFERENCE_ERROR = 10010 + !> @brief Occurs if an attempt to perform an operation on an uninitialized + !! object is made. + integer(int32), parameter :: FCORE_UNINITIALIZED_OBJECT_ERROR = 10011 end module