Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
sds
sds-repo
Commits
d652e901
Commit
d652e901
authored
Mar 27, 2018
by
Matthieu Dorier
Browse files
Merge branch 'master' of xgitlab.cels.anl.gov:sds/sds-repo
parents
a24848a3
ec338bfa
Changes
2
Hide whitespace changes
Inline
Side-by-side
packages/thallium/0001-my-c-installation-needed-an-explicit-cast.patch
deleted
100644 → 0
View file @
a24848a3
From 541725e743289af798091198a98eceb72d8eeaf4 Mon Sep 17 00:00:00 2001
From: Rob Latham <robl@mcs.anl.gov>
Date: Tue, 19 Dec 2017 15:49:13 -0600
Subject: [PATCH] my c++ installation needed an explicit cast
---
examples/00_init/server.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/examples/00_init/server.cpp b/examples/00_init/server.cpp
index 8bea7359..6128a9b6 100644
--- a/examples/00_init/server.cpp
+++ b/examples/00_init/server.cpp
@@ -6,7 +6,7 @@
namespace tl = thallium;
int main(int argc, char** argv) {
tl::engine myEngine("bmi+tcp://127.0.0.1:1234", THALLIUM_SERVER_MODE);
- std::cout << "Server running at address " << myEngine.self() << std::endl;
+ std::cout << "Server running at address " << std::string(myEngine.self()) << std::endl;
return 0;
}
--
2.14.1
packages/thallium/package.py
View file @
d652e901
...
...
@@ -10,5 +10,3 @@ class Thallium(CMakePackage):
#depends_on('mercury')
#depends_on('argobots')
depends_on
(
'margo'
)
patch
(
'0001-my-c-installation-needed-an-explicit-cast.patch'
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment