Skip to content
Snippets Groups Projects
Commit 4e999a10 authored by Jakob Voigts's avatar Jakob Voigts
Browse files

Fixed return values required by vcc on windows

parent 9a68a968
No related branches found
No related tags found
No related merge requests found
...@@ -923,7 +923,7 @@ bool WaveAxes::updateSpikeData(const SpikeObject& s) ...@@ -923,7 +923,7 @@ bool WaveAxes::updateSpikeData(const SpikeObject& s)
spikeIndex %= bufferSize; spikeIndex %= bufferSize;
spikeBuffer.set(spikeIndex, newSpike); spikeBuffer.set(spikeIndex, newSpike);
// return true; return true;
// } else { // } else {
// return false; // return false;
...@@ -1103,6 +1103,7 @@ bool ProjectionAxes::updateSpikeData(const SpikeObject& s) ...@@ -1103,6 +1103,7 @@ bool ProjectionAxes::updateSpikeData(const SpikeObject& s)
updateProjectionImage(s.data[idx1], s.data[idx2], *s.gain); updateProjectionImage(s.data[idx1], s.data[idx2], *s.gain);
return true;
} }
void ProjectionAxes::updateProjectionImage(uint16_t x, uint16_t y, uint16_t gain) void ProjectionAxes::updateProjectionImage(uint16_t x, uint16_t y, uint16_t gain)
...@@ -1225,6 +1226,7 @@ bool GenericAxes::updateSpikeData(const SpikeObject& newSpike) ...@@ -1225,6 +1226,7 @@ bool GenericAxes::updateSpikeData(const SpikeObject& newSpike)
} }
s = newSpike; s = newSpike;
return true;
} }
void GenericAxes::setYLims(double ymin, double ymax) void GenericAxes::setYLims(double ymin, double ymax)
......
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