Skip to content

Commit

Permalink
add inclusion of <memory> to octree files
Browse files Browse the repository at this point in the history
  • Loading branch information
jdinovi committed Dec 29, 2023
1 parent 1829075 commit 33ce06b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions include/octree.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#pragma once

#include <vector>
#include <memory>

#include "body.h"

template <typename T>
Expand Down
2 changes: 1 addition & 1 deletion src/octree.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "./../include/octree.h"
#include <array>
#include <iostream>
#include <memory>

template <typename T>
Octree<T>::Octree(std::array<float, 2>& xCoords, std::array<float, 2>& yCoords, std::array<float, 2>& zCoords)
Expand Down

0 comments on commit 33ce06b

Please sign in to comment.