Fix Merge conflict

pull/5421/head
Kim Kulling 2024-01-30 10:45:46 +01:00 committed by GitHub
parent 42aa467735
commit 9ae79fb1e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 22 deletions

View File

@ -540,28 +540,6 @@ struct aiBuffer {
#endif //! __cplusplus
};
#ifdef __cplusplus
}
#endif //! __cplusplus
/**
* @brief Type to store a in-memory data buffer.
*/
struct aiBuffer {
const char *data; ///< Begin poiner
const char *end; ///< End pointer
#ifdef __cplusplus
/// @brief The class constructor.
aiBuffer() :
data(nullptr), end(nullptr) {}
/// @brief The class destructor.
~aiBuffer() = default;
#endif //! __cplusplus
}
;
// Include implementation files
#include "vector2.inl"
#include "vector3.inl"