| 41 | //! reserved for new fields |
| 42 | uint64_t : 64; |
| 43 | static void write(OutputFile& fout) { |
| 44 | static_assert(sizeof(FeatureBits64) == 8, "bad feature bits"); |
| 45 | FeatureBits64 fb64; |
| 46 | memset(&fb64, 0, sizeof(fb64)); |
| 47 | fout.write(&fb64, 8); |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | } // namespace |
no outgoing calls
no test coverage detected