Commit 93fbd6a0 authored by Christopher Bruns's avatar Christopher Bruns
Browse files

Attempt to address some windows nightly build errors

parent dfe03fe9
......@@ -58,7 +58,7 @@ Kernel& Kernel::operator=(const Kernel& copy) {
return *this;
}
string Kernel::Kernel::getName() const {
string Kernel::getName() const {
return impl->getName();
}
......
......@@ -59,7 +59,7 @@ Stream& Stream::operator=(const Stream& copy) {
return *this;
}
string Stream::Stream::getName() const {
string Stream::getName() const {
return impl->getName();
}
......
......@@ -172,6 +172,7 @@ public:
void initialize(const vector<double>& masses) {
}
double execute(const Stream& positions) {
return 0.0;
}
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment