Fixed compilation (next attempt): Added more missing includes

This commit is contained in:
PKEuS 2020-05-19 08:53:38 +02:00
parent f0ac0c8675
commit a9cea9ad7c
3 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,7 @@
#include "token.h"
#include "astutils.h"
#include "symboldatabase.h"
#include <algorithm>
#include <cassert>
void ProgramMemory::setValue(nonneg int varid, const ValueFlow::Value &value)

View File

@ -1,6 +1,7 @@
#ifndef GUARD_PROGRAMMEMORY_H
#define GUARD_PROGRAMMEMORY_H
#include "config.h"
#include "utils.h"
#include "valueflow.h"
#include "mathlib.h"

View File

@ -21,6 +21,8 @@
#define utilsH
//---------------------------------------------------------------------------
#include "config.h"
#include <cctype>
#include <cstddef>
#include <string>