Skip to content

Commit

Permalink
increased version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorier committed Sep 29, 2023
1 parent 12a20e6 commit c497eab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/06_custom/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ int main(int argc, char** argv) {
tl::endpoint server = myEngine.lookup(argv[1]);
point p(1,2,3);
point q(5,2,4);
double ret = dot_product.on(server)(p,q);
double ret = dot_product.on(server).async(p,q).wait();
std::cout << "Dot product : " << ret << std::endl;

return 0;
Expand Down
2 changes: 2 additions & 0 deletions examples/06_custom/point.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ class point {
point(double a=0.0, double b=0.0, double c=0.0)
: x(a), y(b), z(c) {}

point(const point&) = delete;

template<typename A> friend void serialize(A& ar, point& p);

double operator*(const point& p) const {
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set (thallium-pkg "share/cmake/thallium")
#
set (THALLIUM_VERSION_MAJOR 0)
set (THALLIUM_VERSION_MINOR 11)
set (THALLIUM_VERSION_PATCH 2)
set (THALLIUM_VERSION_PATCH 3)
set (thallium-vers "${THALLIUM_VERSION_MAJOR}.${THALLIUM_VERSION_MINOR}")
set (THALLIUM_VERSION "${thallium-vers}.${THALLIUM_VERSION_PATCH}")

Expand Down

0 comments on commit c497eab

Please sign in to comment.