It seems to be a warning but it compiles anyway so I don’t know if this is a Rider false-positive or what when I compiled and tested it the ID showed as a bunch of Zeroes, but when I deleted the folders and regenerated the project files and compiled again it seemed to fix it.
Cannot print value of type FPlayInEditorID with format specifier %d that implies type int
Just trying to understand the message better because I tried looking that up in the C++ API and it wasn’t very helpful.
I chased it down in Source Code though and found it’s declaration
class FPlayInEditorID
{
public:
CORE_API FPlayInEditorID& operator= (int32 InOther);
CORE_API operator int32() const;
};
So I’m assuming it is a false positive?