Minor changes to comments.

This commit is contained in:
Ralf W. Grosse-Kunstleve 2024-09-15 10:28:30 -07:00
parent 25945a8642
commit b116ec1660
2 changed files with 3 additions and 3 deletions

View File

@ -2,12 +2,12 @@
// Copyright (c) 2024 The pybind Community.
// To maximize portability:
// To maximize reusability:
// DO NOT ADD CODE THAT REQUIRES C++ EXCEPTION HANDLING.
#include "wrap_include_python_h.h"
// Implementation detail. DO NOT USE ELSEWHERE.
// Implementation details. DO NOT USE ELSEWHERE. (Unfortunately we cannot #undef them.)
// This is duplicated here to maximize portability.
#define PYBIND11_PLATFORM_ABI_ID_STRINGIFY(x) #x
#define PYBIND11_PLATFORM_ABI_ID_TOSTRING(x) PYBIND11_PLATFORM_ABI_ID_STRINGIFY(x)

View File

@ -12,7 +12,7 @@
// the standard headers on some systems, you must include Python.h before
// any standard headers are included.
// To maximize portability:
// To maximize reusability:
// DO NOT ADD CODE THAT REQUIRES C++ EXCEPTION HANDLING.
// Disable linking to pythonX_d.lib on Windows in debug mode.