From f840f11eb3186f882d060d636df96361c804cf1b Mon Sep 17 00:00:00 2001 From: Vraiment Date: Mon, 24 Jul 2017 00:32:27 -0700 Subject: [PATCH] Added missing '\throws...' to Surface documentation --- SDL2pp/Surface.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SDL2pp/Surface.hh b/SDL2pp/Surface.hh index 7cacfdb..c6ea34a 100644 --- a/SDL2pp/Surface.hh +++ b/SDL2pp/Surface.hh @@ -217,6 +217,8 @@ public: /// /// \param[in] rwops RWops used to access an image file /// + /// \throws SDL2pp::Exception + /// //////////////////////////////////////////////////////////// explicit Surface(RWops& rwops); @@ -225,6 +227,8 @@ public: /// /// \param[in] filename Path to an image file /// + /// \throws SDL2pp::Exception + /// //////////////////////////////////////////////////////////// explicit Surface(const std::string& filename); #endif