diff --git a/scripts/common.py b/scripts/common.py index 564adfc..08fcd3c 100644 --- a/scripts/common.py +++ b/scripts/common.py @@ -72,6 +72,8 @@ def get_pretty_std_name (std_id): ''' Enum doesn't allow to use '++' in names, so we need this function. ''' def get_full_pretty_std_name (self): + if self.value == StdID.SYCL: + return "c++17" if self.is_cxx(): return "c++11" return "c99"