Skip to content

Commit ecf70b0

Browse files
committed
(merge from head)
removed tabs (inspect tool) [SVN r34721]
1 parent c54acdb commit ecf70b0

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/converter/type_id.cpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
#if defined(__QNXNTO__)
1616
# include <ostream>
17-
#else /* defined(__QNXNTO__) */
17+
#else /* defined(__QNXNTO__) */
1818

1919
#if !defined(__GNUC__) || __GNUC__ >= 3 || __SGI_STL_PORT || __EDG_VERSION__
2020
# include <ostream>
@@ -35,7 +35,7 @@ class __class_type_info;
3535
# include <cxxabi.h>
3636
# endif
3737
# endif
38-
#endif /* defined(__QNXNTO__) */
38+
#endif /* defined(__QNXNTO__) */
3939

4040
namespace boost { namespace python {
4141

@@ -45,7 +45,7 @@ namespace boost { namespace python {
4545
namespace cxxabi {
4646
extern "C" char* __cxa_demangle(char const*, char*, std::size_t*, int*);
4747
}
48-
# else /* defined(__QNXNTO__) */
48+
# else /* defined(__QNXNTO__) */
4949

5050
# ifdef __GNUC__
5151
# if __GNUC__ < 3
@@ -61,10 +61,10 @@ namespace abi
6161
{
6262
extern "C" char* __cxa_demangle(char const*, char*, std::size_t*, int*);
6363
}
64-
# endif /* __GNUC__ == 3 && __GNUC_MINOR__ == 0 */
65-
# endif /* __GNUC__ < 3 */
66-
# endif /* __GNUC__ */
67-
# endif /* defined(__QNXNTO__) */
64+
# endif /* __GNUC__ == 3 && __GNUC_MINOR__ == 0 */
65+
# endif /* __GNUC__ < 3 */
66+
# endif /* __GNUC__ */
67+
# endif /* defined(__QNXNTO__) */
6868

6969
namespace
7070
{

src/exec.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ object exec_file(str filename, object global, object local)
3434
if (!pyfile) throw std::invalid_argument(std::string(f) + " : no such file");
3535
python::handle<> file(pyfile);
3636
PyObject* result = PyRun_File(PyFile_AsFile(file.get()),
37-
f,
38-
Py_file_input,
39-
global.ptr(), local.ptr());
37+
f,
38+
Py_file_input,
39+
global.ptr(), local.ptr());
4040
if (!result) throw_error_already_set();
4141
return object(detail::new_reference(result));
4242
}

0 commit comments

Comments
 (0)