We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
long double
Hello! I was doing the tutorial exercises for charm++ when I noticed that ckout does not work with long double. Program to reproduce this behaviour :
ckout
mainmodule play { mainchare start { entry start(CkArgMsg* msg); } }
#include<stdio.h> #include "play.decl.h" class start : public CBase_start { public: start(CkArgMsg* m) { long double k = 3456.344134; ckout << "k = " << k << endl; } }; #include "play.def.h"
Compilation error :
play.cc:9:25: error: ambiguous overload for ‘operator<<’ (operand types are ‘CkOutStream’ and ‘long double’) 9 | ckout << "k = " << k << endl; | ~~~~~~~~~~~~~~~ ^~ ~ | | | | CkOutStream long double
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello! I was doing the tutorial exercises for charm++ when I noticed that
ckout
does not work withlong double
. Program to reproduce this behaviour :Compilation error :
The text was updated successfully, but these errors were encountered: