@@ -162,18 +162,18 @@ + (OFDictionary*)environment; /*! * @brief Terminates the application. */ -+ (void)terminate OF_NO_RETURN; ++ (void)terminate OF_METHOD_NORETURN; /*! * @brief Terminates the application with the specified status. * * @param status The status with which the application will terminate */ -+ (void)terminateWithStatus: (int)status OF_NO_RETURN; ++ (void)terminateWithStatus: (int)status OF_METHOD_NORETURN; /*! * @brief Gets args and argv. * * @param argc A pointer where a pointer to argc should be stored @@ -218,18 +218,18 @@ - (void)setDelegate: (id )delegate; /*! * @brief Terminates the application. */ -- (void)terminate; +- (void)terminate OF_METHOD_NORETURN; /*! * @brief Terminates the application with the specified status. * * @param status The status with which the application will terminate */ -- (void)terminateWithStatus: (int)status; +- (void)terminateWithStatus: (int)status OF_METHOD_NORETURN; @end @interface OFObject (OFApplicationDelegate) @end