Skip to content
Snippets Groups Projects
Commit 83a34ba2 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

hotfix: we do need CObjNum::to_dr() even if here and there we respect has_err()

parent 27cf7e7b
No related branches found
No related tags found
No related merge requests found
### first of all, check whether all tests pass
cd /G/f2/pub
mi
ctest -j7
cd /G/f2
git checkout master
git pull origin master
......@@ -56,8 +61,8 @@ mkdir build
cd build
cmake ..
m -j7
ctest -j7
mi
ctest -j7
### upload man page (if changed)
......
......@@ -47,8 +47,8 @@ class CObjNum : public CObj
public:
CObjNum() : CObj() {}
bool is_vec() const { return false; }
// virtual double to_dr() const { return 0.; }
// virtual double to_dr(int i) const { return 0.; }
virtual double to_dr() const { return 0.; }
virtual double to_dr(int i) const { return 0.; }
virtual RObjVecNum to_vec(int repetitions) const = 0;
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment