Skip to content
Snippets Groups Projects
Commit 29c93859 authored by Sam Yates's avatar Sam Yates
Browse files

Minor fixes for PR#86 branch.

* Count tests with int not bool in `mpi_listener.hpp`
* Ytpo fix in `gathered_vector.hpp`
* Add missing include in `test_algorithms.cpp`
parent 4efe87f8
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ public: ...@@ -30,7 +30,7 @@ public:
/// the number of entries in the gathered vector in partiion i /// the number of entries in the gathered vector in partiion i
count_type count(std::size_t i) const { count_type count(std::size_t i) const {
return partition_[i+1] - partition[i]; return partition_[i+1] - partition_[i];
} }
/// the values in the gathered vector /// the values in the gathered vector
......
...@@ -32,8 +32,8 @@ private: ...@@ -32,8 +32,8 @@ private:
int size_; int size_;
std::ofstream fid_; std::ofstream fid_;
char buffer_[1024]; char buffer_[1024];
bool test_case_failures_; int test_case_failures_;
bool test_case_tests_; int test_case_tests_;
int test_failures_; int test_failures_;
bool does_print() const { bool does_print() const {
......
#include <random>
#include <vector> #include <vector>
#include "gtest.h" #include "gtest.h"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment