-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) 2022 Dr. Colin Hirsch and Daniel Frey | ||
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/ | ||
|
||
#ifndef TAO_PEGTL_INTERNAL_DEPENDENT_TRUE_HPP | ||
#define TAO_PEGTL_INTERNAL_DEPENDENT_TRUE_HPP | ||
|
||
#include "../config.hpp" | ||
|
||
namespace TAO_PEGTL_NAMESPACE::internal | ||
{ | ||
template< typename... > | ||
inline constexpr bool dependent_true = true; | ||
|
||
} // namespace TAO_PEGTL_NAMESPACE::internal | ||
|
||
#endif |