- Added More Documentation

- Added some more notes to the planning doc regarding shared libraries
 - Started adding unit tests for the C++ lang library.
This commit is contained in:
2025-06-19 15:16:29 -04:00
parent 909be55ed3
commit 4d8466851c
21 changed files with 400 additions and 176 deletions

View File

@@ -22,7 +22,6 @@
#include <iostream>
#include <ostream>
#include <string>
#include <cassert>
#include <fennec/lang/limits.h>
#include <fennec/math/common.h>
@@ -68,7 +67,7 @@ inline bool operator<=(const vector<ScalarT, IndicesV...>& lhs, const vector<Sca
}
template<typename ResultT>
inline void __fennec_test_run(const std::string& expression, ResultT result, ResultT expected)
inline void __fennec_test_run(const std::string& expression, const ResultT result, const ResultT expected)
{
std::cout << std::boolalpha;
std::cout << '\t' << expression << " = " << result;