MCPcopy Create free account
hub / github.com/OpenSteam001/OpenSteamTool / canEmitFixedFrame

Method canEmitFixedFrame

tools/ipc_codegen/ipc_codegen.cpp:820–825  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

818 }
819
820 static bool canEmitFixedFrame(const FrameDecl& frame) {
821 for (const auto& field : frame.fields) {
822 if (field.payload || !isIntegral(field.type)) return false;
823 }
824 return true;
825 }
826
827 static std::string frameFixedSizeExpr(const FrameDecl& frame) {
828 std::vector<std::string> terms;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected