Experimental clangd support for PoolBox
This commit is contained in:
parent
18ebf33e2c
commit
9a5918f3f7
3
.clangd
3
.clangd
|
@ -1,2 +1,3 @@
|
|||
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",
|
||||
"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": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
|
|
|
@ -224,7 +224,7 @@ namespace JabyEngine {
|
|||
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 SizeU8 = Size<uint8_t>;
|
||||
|
|
Loading…
Reference in New Issue