/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Utilities/interface/ProductResolverIndex.h
21 строка
641 B
W. David Dagenhart
Changes from scram build code-format-all
03 май 2019, 18:48
03 май 2019, 18:48
22c28dc
Код
Авторство
О чём код?
#ifndef FWCore_Utilities_ProductResolverIndex_h #define FWCore_Utilities_ProductResolverIndex_h #include <limits> namespace edm { typedef unsigned int ProductResolverIndex; enum ProductResolverIndexValues { // All values of the ProductResolverIndex in this enumeration should // have this bit set to 1, ProductResolverIndexValuesBit = 1U << 30, ProductResolverIndexInvalid = std::numeric_limits<unsigned int>::max(), ProductResolverIndexInitializing = std::numeric_limits<unsigned int>::max() - 1, ProductResolverIndexAmbiguous = std::numeric_limits<unsigned int>::max() - 2 }; } // namespace edm #endif