Closed
Conversation
You can test this locally with the following command:git-clang-format --diff 9f1703125301ebc7c6f4aca7ee627d2a15caf160 55606c669dd75f85fd850cc22f163da846f89025 -- test-format.cppView the diff from clang-format here.diff --git a/test-format.cpp b/test-format.cpp
index 2705d341..a6ba9b84 100644
--- a/test-format.cpp
+++ b/test-format.cpp
@@ -2,12 +2,12 @@
#include <stdio.h>
int main() {
- int x=1;
- int y =2;
- if(x==y){
- printf("equal");
- }else{
- printf("not equal");
- }
- return 0;
+ int x = 1;
+ int y = 2;
+ if (x == y) {
+ printf("equal");
+ } else {
+ printf("not equal");
+ }
+ return 0;
}
|
damyanp
pushed a commit
that referenced
this pull request
Mar 10, 2026
… `vk::SampledTexture2D` type. (microsoft#8158) Part of microsoft#7979 Support subscriptor indexing `[]` and `.mips[]` for `SampledTexture2D`. `.sample[]` will not be allowed, as in `Texture2D`.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Test PR with a badly formatted C++ file to trigger the clang-format checker workflow and verify the apply_diff security fix.