We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4771adb commit 6d08824Copy full SHA for 6d08824
src/xmagics/execution.cpp
@@ -35,10 +35,6 @@ namespace xcpp
35
36
int timeit::exec_counter = 0;
37
38
- timeit::timeit()
39
- {
40
- }
41
-
42
void timeit::get_options(argparser& argpars)
43
{
44
argpars.add_description("Time execution of a C++ statement or expression");
src/xmagics/execution.hpp
@@ -23,15 +23,15 @@ namespace xcpp
23
24
public:
25
26
- timeit();
27
+ XEUS_CPP_API
28
virtual void operator()(const std::string& line) override
29
30
std::string cline = line;
31
std::string cell = "";
32
execute(cline, cell);
33
}
34
virtual void operator()(const std::string& line, const std::string& cell) override
0 commit comments