-
Notifications
You must be signed in to change notification settings - Fork 403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Clean-up std::terminate usage #261
Comments
19 tasks
19 tasks
19 tasks
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 19, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 21, 2021
…x_utils Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 21, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 21, 2021
…ceoryx_posh Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 21, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 21, 2021
…cator changes and move makeScopedStatic to inl Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
19 tasks
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 22, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 22, 2021
…m entry Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 22, 2021
…s calls Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 22, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 22, 2021
…back() Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 26, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 26, 2021
…e and simplify out of bounds check in cxx::vector Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 26, 2021
…turn value of AccessController::createACL() Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 26, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 27, 2021
…o termination Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 27, 2021
…r, use attention doxygen tag and remove redundant comments Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 27, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
to ApexAI/iceoryx
that referenced
this issue
Apr 28, 2021
Signed-off-by: Simon Hoinkis <simon.hoinkis@apex.ai>
mossmaurice
added a commit
that referenced
this issue
Apr 29, 2021
Iox #261 Replace std::terminate with Expects/Ensures
19 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Brief feature description
Iceoryx often uses
std::terminate()
instead oferrorHandler()
. With #130 a clear error handling will be available, afterwards all occurrences should be replaced by calls to the errorHandler.Detailed information
std::terminate
is only allowed in building blocks like theerrorHandler
std::terminate
iniceoryx_utils
withcxx::Expects
, where dependencies shall be avoided to higher level modulesstd::terminate
iniceoryx_posh
withcxx::Expects
The text was updated successfully, but these errors were encountered: