From dfeb437b457ace4609342cfa8f2b529c1771eadd Mon Sep 17 00:00:00 2001 From: Ivan Krysak Date: Wed, 19 Jan 2022 17:09:30 +0200 Subject: [PATCH] Fix a minor `convertible_to` concept issue --- include/revng/Support/Concepts.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/revng/Support/Concepts.h b/include/revng/Support/Concepts.h index 7c27fc2b4..be756c5ba 100644 --- a/include/revng/Support/Concepts.h +++ b/include/revng/Support/Concepts.h @@ -10,7 +10,7 @@ template concept same_as = std::is_same_v; template -concept convertible_to = std::is_convertible_v; +concept convertible_to = std::is_convertible_v; template concept ConstOrNot = std::is_same_v or std::is_same_v;