Skip to content

Commit

Permalink
Attempt to address some windows nightly build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Bruns committed Jun 12, 2008
1 parent dfe03fe commit 93fbd6a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion olla/src/Kernel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Kernel& Kernel::operator=(const Kernel& copy) {
return *this;
}

string Kernel::Kernel::getName() const {
string Kernel::getName() const {
return impl->getName();
}

Expand Down
2 changes: 1 addition & 1 deletion olla/src/Stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Stream& Stream::operator=(const Stream& copy) {
return *this;
}

string Stream::Stream::getName() const {
string Stream::getName() const {
return impl->getName();
}

Expand Down
1 change: 1 addition & 0 deletions tests/TestFindExclusions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ class DummyKEKernel : public CalcKineticEnergyKernel {
void initialize(const vector<double>& masses) {
}
double execute(const Stream& positions) {
return 0.0;
}
};

Expand Down

0 comments on commit 93fbd6a

Please sign in to comment.