No return in non void function
Created by: wkazubski
In function: bool RationalizeRinexNav::writeOutputFile in file core/lib/GNSSEph/RationalizeRinexNav.cpp there is no return at the end (around line 131 of the file). The function compiles OK but quality check on openSUSE build system catches this: ... [ 114s] I: Program returns random data in a function [ 114s] E: gpstk no-return-in-nonvoid-function /home/abuild/rpmbuild/BUILD/GPSTk-2.10.6/core/lib/GNSSEph/RationalizeRinexNav.cpp:132 ... as it may return random data, making the program unstable. This error is treated so serious, that built binaries are discarded. Earlier this function returns false if something happened. Should it return true if it reaches the end?