16 lines
433 B
Text
16 lines
433 B
Text
|
|
// SPDX-License-Identifier: LGPL-3.0-only
|
||
|
|
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
||
|
|
|
||
|
|
export module Base;
|
||
|
|
import std;
|
||
|
|
|
||
|
|
export namespace Demo {
|
||
|
|
class Payload {
|
||
|
|
public:
|
||
|
|
// The whole point of the fixture: `first` moves, and nothing about any
|
||
|
|
// signature or mangled name changes with it.
|
||
|
|
std::array<char, 4096> padding{};
|
||
|
|
std::int32_t first = 1;
|
||
|
|
void Stamp();
|
||
|
|
};
|
||
|
|
}
|