constants.h 488 B

12345678910111213141516171819
  1. #pragma once
  2. #include <util/system/defaults.h>
  3. namespace NYT {
  4. ////////////////////////////////////////////////////////////////////////////////
  5. // Maximum number of input tables for operation.
  6. // If greater number of input tables are provided behaviour is undefined
  7. // (it might work ok or it might fail or it might work very slowly).
  8. constexpr size_t MaxInputTableCount = 1000;
  9. ////////////////////////////////////////////////////////////////////////////////
  10. } // namespace NYT