Experimental clangd support for PoolBox
This commit is contained in:
3
.clangd
3
.clangd
@@ -1,2 +1,3 @@
|
|||||||
CompileFlags:
|
CompileFlags:
|
||||||
Remove: [-fmodules-ts, -mno-shared, -mno-llsc, -march=r2000, -mtune=r2000]
|
Remove: [-fmodules-ts, -mno-shared, -mno-llsc, -march=r2000, -mtune=r2000, implied_comparison_category_type_not_found]
|
||||||
|
Compiler: mipsel-linux-gnu-g++
|
||||||
@@ -11,7 +11,7 @@
|
|||||||
{
|
{
|
||||||
"label": "build",
|
"label": "build",
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"command": "${env:JABY_ENGINE_PATH}/scripts/podman_jaby_engine.sh ${workspaceFolder}:. make ${input:project}_${input:target} BUILD_PROFILE=${input:build profile} REGION=${input:region} CUSTOM_CONFIG=${input:custom config}",
|
"command": "${env:JABY_ENGINE_PATH}/scripts/podman_jaby_engine.sh ${workspaceFolder}:. bear -- make ${input:project}_${input:target} BUILD_PROFILE=${input:build profile} REGION=${input:region} CUSTOM_CONFIG=${input:custom config}",
|
||||||
"group": {
|
"group": {
|
||||||
"kind": "build",
|
"kind": "build",
|
||||||
"isDefault": true
|
"isDefault": true
|
||||||
|
|||||||
@@ -224,7 +224,7 @@ namespace JabyEngine {
|
|||||||
return Size::create(static_cast<T>(size.width), static_cast<T>(size.height));
|
return Size::create(static_cast<T>(size.width), static_cast<T>(size.height));
|
||||||
}
|
}
|
||||||
|
|
||||||
auto operator<=>(const Size<T>&) const = default;
|
bool operator<=>(const Size<T>&) const = default;
|
||||||
};
|
};
|
||||||
using SizeI8 = Size<int8_t>;
|
using SizeI8 = Size<int8_t>;
|
||||||
using SizeU8 = Size<uint8_t>;
|
using SizeU8 = Size<uint8_t>;
|
||||||
|
|||||||
Reference in New Issue
Block a user