Program Listing for File Constants.h#
↰ Return to documentation for file (src/util/StringUtility/Constants.h)
// This file defines constants, flags, etc. that are so useful that they're at the very top
// "Rose" namespace, and included in all user code via #include <rose.h>.
//
// Do not put #define constants in this file unless they follow the proper ROSE naming scheme.
//
#ifndef ROSE_Constants_H
#define ROSE_Constants_H
#include <rosedll.h>
#include <cstddef>
namespace Rose {
const size_t UNLIMITED(static_cast<size_t>(-1));
const size_t INVALID_INDEX(static_cast<size_t>(-1));
} // namespace
#endif