Author: brane
Date: Fri Dec 28 07:35:35 2018
New Revision: 1849828
URL: http://svn.apache.org/viewvc?rev=1849828&view=rev
Log:
* subversion/bindings/cxx/include/svnxx/depth.hpp
(depth): Use explicit std:: qualifier on enum type.
Modified:
subversion/trunk/subversion/bindings/cxx/include/svnxx/depth.hpp
Modified: subversion/trunk/subversion/bindings/cxx/include/svnxx/depth.hpp
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/bindings/cxx/include/svnxx/depth.hpp?rev=1849828&r1=1849827&r2=1849828&view=diff
==============================================================================
--- subversion/trunk/subversion/bindings/cxx/include/svnxx/depth.hpp (original)
+++ subversion/trunk/subversion/bindings/cxx/include/svnxx/depth.hpp Fri Dec 28
07:35:35 2018
@@ -35,7 +35,7 @@ namespace svnxx {
* @brief The concept of depth for directories (see @ref svn_depth_t).
*/
// NOTE: Keep these values identical to those in svn_depth_t!
-enum class depth : int8_t
+enum class depth : std::int8_t
{
unknown = -2,
exclude = -1,