Skip to content
Snippets Groups Projects

Extend mdspan interface and fix mdspan memory layout mapping

Merged Frederik Hennig requested to merge fhennig/mdspan-fixes into master
All threads resolved!
Viewing commit 09a94bf5
Show latest version
1 file
+ 2
1
Preferences
Compare changes
@@ -29,7 +29,8 @@ def invoke_clang_format(code: str, options: ClangFormatOptions) -> str:
@@ -29,7 +29,8 @@ def invoke_clang_format(code: str, options: ClangFormatOptions) -> str:
binary = options.get_option("binary")
binary = options.get_option("binary")
force = options.get_option("force")
force = options.get_option("force")
args = [binary, f"--style={options.code_style}"]
style = options.get_option("code_style")
 
args = [binary, f"--style={style}"]
if not shutil.which(binary):
if not shutil.which(binary):
if force:
if force: