polytracker icon indicating copy to clipboard operation
polytracker copied to clipboard

Moving `#include taintdag/labels.h` cases syntax errors

Open surovic opened this issue 2 years ago • 0 comments

Moving #include taintdag/labels.h in here like

#include <catch2/catch.hpp>

#include "taintdag/outputfile.h"
#include "taintdag/section.h"
#include "taintdag/storage.h"
#include "taintdag/string_table.h"
#include "taintdag/taint_source.h"
#include "taintdag/labels.h"

to

#include <catch2/catch.hpp>

#include "taintdag/labels.h"
#include "taintdag/outputfile.h"
#include "taintdag/section.h"
#include "taintdag/storage.h"
#include "taintdag/string_table.h"
#include "taintdag/taint_source.h"

causes syntax errors. Maybe due missing dependencies in taintdag/labels.h ?

surovic avatar Jan 31 '23 14:01 surovic