Skip to content

Commit

Permalink
Update BinaryHeap includes (#11)
Browse files Browse the repository at this point in the history
Changes to be committed:
	modified:   include/Auxiliary/Types.hpp
	modified:   include/DataStructures/Container/Queues/BinaryHeap.hpp
  • Loading branch information
franziska-wegner authored Dec 7, 2023
1 parent 95c64b5 commit 83cbb5f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/Auxiliary/Types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace egoa::Types {

// String
typedef std::string string; /**< */
typedef string name; /**< */
typedef std::string name; /**< */

// Snapshots
typedef real generatorSnapshot; /**< */
Expand Down
4 changes: 3 additions & 1 deletion include/DataStructures/Container/Queues/BinaryHeap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#define EGOA__DATA_STRUCTURES__CONTAINER__BINARY_HEAP_HPP

#include "Auxiliary/Auxiliary.hpp"
#include "Auxiliary/Constants.hpp"
#include "Auxiliary/ExecutionPolicy.hpp"
#include "Auxiliary/Types.hpp"
#include "Exceptions/Assertions.hpp"

#include <iomanip>
Expand Down Expand Up @@ -155,7 +157,7 @@ class BinaryHeap {
{
return std::distance( std::begin(heap_), result );
}
return Const::none;
return Const::NONE;
}
/// @}

Expand Down

0 comments on commit 83cbb5f

Please sign in to comment.