JKot

Results 7 issues of JKot

I implement a simple chain of states like: A => submachine state B => submachine state C => D ``` using UnityEngine; using FSM; public class Test : MonoBehaviour {...

For android flurry method setLogLevel accepts constans from android.util.Log class. Here are these constants: ``` Log.ASSERT Constant Value: 7 (0x00000007) Log.DEBUG Constant Value: 3 (0x00000003) Log.ERROR Constant Value: 6 (0x00000006)...

bug

### Description This change addresses an issue where compilation fails on Windows with Clang due to unknown options "/W4 /WX" being passed to the Clang compiler. ### The solution The...

question

WTR: ``` struct Tag{}; auto works = std::get(std::make_tuple(std::make_tuple({}))); auto failedToCompile = eastl::get(eastl::make_tuple(eastl::make_tuple({}))); ``` Any Intreactions with ```eastl::make_tuple({})``` causes compilation errors: ```static_assert(I != I, "tuple_element index out of range");```

string_view find method are suppose to be constexpr but it's not, due using non constexpr function 'search' include\EASTL\string_view.h:217:37: note: non-constexpr function 'search' cannot be used in a constant expression 217...

### Summary When building with clang-cl (Clang frontend for MSVC): - Previously, both Clang-specific and MSVC-specific compiler flags were applied, producing duplicate warnings and huge warning output. - Compilation could...

Usage tracking for constant buffers generated from ParameterBlock can be incorrect. In some cases, a default constant buffer is emitted for a ParameterBlock, but is not reported as used by...