Start work on dropping tmp vars after use

This commit is contained in:
2025-12-22 14:26:12 +11:00
parent 525b2bc733
commit 957e0fd95a
2 changed files with 26 additions and 0 deletions

View File

@@ -28,6 +28,7 @@ namespace Solstice {
class SolGroundCodeBlock {
public:
std::vector<GroundInstruction> code;
std::vector<std::string> toBeDropped;
SolGroundCodeBlock() = default;
};