From 8bf0923ce6e2acbabedcf4cfa8f14427fc3b60b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9a=20Saviot?= Date: Mon, 2 Jul 2018 14:47:15 +0200 Subject: [PATCH] Add pool log test method --- test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test.cpp b/test.cpp index 0ccbb6c98..3c186f9e8 100644 --- a/test.cpp +++ b/test.cpp @@ -1,6 +1,10 @@ #include "refs.h" #include +void logPool() { + TreePool::sharedPool()->log(); +} + void assert_expression_approximates_to(ExpressionRef e, float result) { float b = e.approximate(); if (b > result) {