showing jacob stuff

v1
Brett 2023-11-27 13:54:01 -05:00
parent 583807af96
commit d589056a8d
2 changed files with 8 additions and 1 deletions

View File

@ -97,6 +97,8 @@ int main(int argc, const char** argv)
blt::tests::nbtRead(); blt::tests::nbtRead();
} }
return 0;
//runProfilingAndTableTests(); //runProfilingAndTableTests();

View File

@ -16,8 +16,13 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>. * along with this program. If not, see <https://www.gnu.org/licenses/>.
*/ */
#include <blt/std/utility.h> #include <blt/std/utility.h>
#include <blt/std/logging.h>
#include <utility_test.h> #include <utility_test.h>
#include <vector> #include <vector>
#include <cstring>
#include <iostream>
#include <limits>
std::optional<int> get() std::optional<int> get()
{ {
@ -26,7 +31,7 @@ std::optional<int> get()
void blt::test::utility::run() void blt::test::utility::run()
{ {
std::vector<int> temp; //std::vector<int> temp;
std::optional<int> hi(10); std::optional<int> hi(10);
if (auto test = get()) if (auto test = get())
{ {