Skip to content

Commit

Permalink
Fix compilation.
Browse files Browse the repository at this point in the history
  • Loading branch information
dillof committed May 1, 2024
1 parent 31013dc commit 93ea874
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/ResolveResult.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <string>
#include <unordered_set>

class ResolveResult {
Expand Down
1 change: 1 addition & 0 deletions src/VariableDependencies.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include "VariableDependencies.h"
#include "Exception.h"

#include <algorithm>
#include <iostream>

VariableDependencies::VariableDependencies(const std::unordered_map<std::string, std::shared_ptr<Variable>>& variables) {
Expand Down
2 changes: 2 additions & 0 deletions src/VariableDependencies.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

#include <memory>
#include <string>
#include <unordered_map>
#include <unordered_set>

class Variable;
Expand Down

0 comments on commit 93ea874

Please sign in to comment.