If I don’t return anything in a function which returns something, compiler will warn about the function is not returning anything.
But If I call abort() in the function, compiler won’t warn. How can I mark my own function like this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
__attribute__((__noreturn__))should do it for Clang or GCC. Since you’ve tagged your question for Objective-C, that should do it for you!