We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Many methods have an int or bool return type, but never vary the return value and are not checked in the calling code.
int
bool
transport_manager_impl.cc:
int TransportManagerImpl::Init() { LOG4CXX_TRACE(logger_, "enter"); all_thread_active_ = true; is_initialized_ = true; LOG4CXX_TRACE(logger_, "exit with E_SUCCESS"); return E_SUCCESS; }
Call from life_cycle.cc:
transport_manager_->Init();
Either return values should be checked or functions should have return type of void.
void
The text was updated successfully, but these errors were encountered:
Merge pull request #34 from CustomSDL/feature/REVSDL-1194-moduleType-…
3cae655
…other-sections REVSDL-1194: Fix support moduleTypes for other sections
Merge pull request smartdevicelink#34 in NAR/sdl-core from experiment…
c4a93ae
…/SDL-1053 to develop * commit 'a06db5a879dda9537a631a1caa64f814ab5442c5': SDL-1053 Add termination process for device scanner
No branches or pull requests
Many methods have an
int
orbool
return type, but never vary the return value and are not checked in the calling code.transport_manager_impl.cc:
Call from life_cycle.cc:
transport_manager_->Init();
Either return values should be checked or functions should have return type of
void
.The text was updated successfully, but these errors were encountered: