| 144 | // Test function used to test macro collision and non-expansion. |
| 145 | constexpr absl::string_view kGreatest = "greatest"; |
| 146 | std::unique_ptr<CelFunction> CreateGreatestFunction() { |
| 147 | return std::make_unique<TestFunction>(kGreatest); |
| 148 | } |
| 149 | |
| 150 | constexpr absl::string_view kLeast = "least"; |
| 151 | std::unique_ptr<CelFunction> CreateLeastFunction() { |