Skip to content
Snippets Groups Projects
Commit d2c05fb0 authored by Vasileios Karakasis's avatar Vasileios Karakasis Committed by Ben Cumming
Browse files

Fix Clang 3.9 compilation (#138)

parent 0f00ede6
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@
#include "expr_expand.hpp"
#include "test.hpp"
using namespace nest::mc;
stmt_list_type& proc_statements(Expression *e) {
if (!e || !e->is_symbol() || ! e->is_symbol()->is_procedure()) {
......@@ -95,4 +96,3 @@ TEST(KineticRewriter, equiv) {
EXPECT_EQ(deriv_map["b'"], kin_map["b'"]);
EXPECT_EQ(deriv_map["c'"], kin_map["c'"]);
}
......@@ -5,6 +5,8 @@
#include "constantfolder.hpp"
#include "modccutil.hpp"
using namespace nest::mc;
TEST(Optimizer, constant_folding) {
auto v = util::make_unique<ConstantFolderVisitor>();
{
......
......@@ -10,6 +10,8 @@
* visitors
**************************************************************/
using namespace nest::mc;
TEST(FlopVisitor, basic) {
{
auto visitor = util::make_unique<FlopVisitor>();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment