From fd0ea44d185b8d28ec3229e13bd56e1f05435060 Mon Sep 17 00:00:00 2001 From: David Mehringer Date: Wed, 23 Mar 2022 13:24:56 -0400 Subject: [PATCH] clean up things that were missed in PR #1172 --- casa/Utilities.h | 6 +----- casa/Utilities/Sequence2.cc | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/casa/Utilities.h b/casa/Utilities.h index e33f69a552f..b30cfe3f904 100644 --- a/casa/Utilities.h +++ b/casa/Utilities.h @@ -43,9 +43,7 @@ #include #include #include -#include #include -#include #include #include #include @@ -125,9 +123,7 @@ namespace casacore { //# NAMESPACE CASACORE - BEGIN // of any datatype can be derived from the base class // Sequence. // One example is uIntSequence, -// provided for general use. Another is -// RegSequence, exclusively used -// by the Register function. +// provided for general use. //
  • Strings. // for the C++ preprocessor // diff --git a/casa/Utilities/Sequence2.cc b/casa/Utilities/Sequence2.cc index 7cad85b8e5e..88c5fd35dd8 100644 --- a/casa/Utilities/Sequence2.cc +++ b/casa/Utilities/Sequence2.cc @@ -30,7 +30,7 @@ namespace casacore { //# NAMESPACE CASACORE - BEGIN #if defined(USE_THREADS) -std::atomic uIntSequence::next(1); // start at 1 to stay in sync with RegSequence +std::atomic uIntSequence::next(1); // start at 1 to stay in sync with RegSequence, FIXME fix comment, RegSequnce no longer exists #else uInt uIntSequence::next = 1; #endif