From 8a4f0f9c1ec471a5f129750cec78f1f7b7706515 Mon Sep 17 00:00:00 2001 From: USS Constellation <98734231+CptMacTavish404@users.noreply.github.com> Date: Wed, 13 Aug 2025 22:20:24 +0545 Subject: [PATCH] Update c_cpp_properties.json Improved code readability//Code beautified --- vs_code/c_cpp_properties.json | 38 +++++++++++++++++++---------------- 1 file changed, 21 insertions(+), 17 deletions(-) diff --git a/vs_code/c_cpp_properties.json b/vs_code/c_cpp_properties.json index 13ff85a..1df3aba 100644 --- a/vs_code/c_cpp_properties.json +++ b/vs_code/c_cpp_properties.json @@ -1,18 +1,22 @@ { - "configurations": [ - { - "name": "Win32", - "includePath": [ - "${workspaceFolder}/**", - "C:/msys64/mingw64/include", - "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.8/include" - ], - "defines": [], - "compilerPath": "C:/msys64/mingw64/bin/g++.exe", - "cStandard": "c17", - "cppStandard": "c++17", - "intelliSenseMode": "windows-gcc-x64" - } - ], - "version": 4 -} \ No newline at end of file + "configurations": + [ + { + "name": "Win32", + "includePath": + [ + "${workspaceFolder}/**", + "C:/msys64/mingw64/include", + "C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v12.8/include" + ], + "defines": + [ + ], + "compilerPath": "C:/msys64/mingw64/bin/g++.exe", + "cStandard": "c17", + "cppStandard": "c++17", + "intelliSenseMode": "windows-gcc-x64" + } + ], + "version": 4 +}