Fixed second linux compile bug

This commit is contained in:
2021-07-03 12:26:55 -04:00
parent ccf6340f6c
commit 5f2cd7fae8
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ NUMCORES = $(shell grep -c "^processor" /proc/cpuinfo)
NUMCORESWIN = ${NUMBER_OF_PROCESSORS} NUMCORESWIN = ${NUMBER_OF_PROCESSORS}
TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines TESTFLAGS = -O2 -std=c++20 -Wall -fcoroutines
LINKEDLIBS = -lgmp -lgmpxx LINKEDLIBS = -lgmp -lgmpxx
INCLUDE_DIR = ../../headers INCLUDE_DIR = ./headers
TESTDIR = ./test/mee TESTDIR = ./test/mee
BINDIR = ./bin BINDIR = ./bin
LOGDIR = ./logs LOGDIR = ./logs

View File

@@ -23,7 +23,7 @@
#include <iostream> #include <iostream>
#include <vector> #include <vector>
#include <cinttypes> #include <cinttypes>
#include "Dice.hpp" #include "mee/Dice.hpp"
const uint64_t LENGTH_OF_TEST = 100; //How many times the dice will get rolled * the number of sides const uint64_t LENGTH_OF_TEST = 100; //How many times the dice will get rolled * the number of sides