Skip to content

Commit c450c85

Browse files
style: pre-commit fixes
1 parent a3bdd9d commit c450c85

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

include/pybind11/pybind11.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,12 @@
1010

1111
#pragma once
1212

13-
// See Issue #5956. This fixes compilation failure with MSVC 17.12 (v14.44) and C++20: '_BACKUP_ITERATOR_DEBUG_LEVEL' undeclared when including span header from STL.
13+
// See Issue #5956. This fixes compilation failure with MSVC 17.12 (v14.44) and C++20:
14+
// '_BACKUP_ITERATOR_DEBUG_LEVEL' undeclared when including span header from STL.
1415
#if defined(_MSC_VER)
15-
#ifndef _BACKUP_ITERATOR_DEBUG_LEVEL
16-
#define _BACKUP_ITERATOR_DEBUG_LEVEL 0
17-
#endif
16+
# ifndef _BACKUP_ITERATOR_DEBUG_LEVEL
17+
# define _BACKUP_ITERATOR_DEBUG_LEVEL 0
18+
# endif
1819
#endif
1920

2021
#include "detail/class.h"

0 commit comments

Comments
 (0)