Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion highs/ipm/hipo/auxiliary/Auxiliary.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void printTest(const std::vector<T>& v, const std::string s) {
}

template <typename T>
void freeVector(std::vector<T> v) {
void freeVector(std::vector<T>& v) {
// Give up memory allocated to v.
// (technically shrink_to_fit does not guarantee to deallocate)
v.clear();
Expand Down
Loading