- Setup Basic Implementation for String Library

This commit is contained in:
2025-07-06 19:29:28 -04:00
parent a33bf5206f
commit 012052641d
17 changed files with 646 additions and 41 deletions

View File

@@ -57,7 +57,7 @@ inline std::ostream& operator<<(std::ostream& os, const matrix<ScalarT, RowsV, C
// Core test function
template<typename ResultT>
inline void __fennec_test_run(const std::string& expression, const ResultT result, const ResultT expected)
inline void __fennec_test_run(const std::string& expression, const ResultT& result, const ResultT& expected)
{
// Print out the expression as a string and the resulting value
std::cout << std::boolalpha;