Sprint 30: end-of-sprint architecture refactor pass
This commit is contained in:
12
editor/src/DebugValidationUtil.h
Normal file
12
editor/src/DebugValidationUtil.h
Normal file
@@ -0,0 +1,12 @@
|
||||
#pragma once
|
||||
// Sprint 30 refactor: shared debug validation helpers
|
||||
|
||||
#include <string>
|
||||
|
||||
inline bool hasRequiredDebugIds(const std::string& a, const std::string& b) {
|
||||
return !a.empty() && !b.empty();
|
||||
}
|
||||
|
||||
inline bool isPositiveLine(int line) {
|
||||
return line > 0;
|
||||
}
|
||||
Reference in New Issue
Block a user