mirror of
https://github.com/opencv/opencv.git
synced 2025-07-24 14:06:27 +08:00

3rdparty:ittnotify: update to v3.25.4 #26802 Close https://github.com/opencv/opencv/issues/26801 See https://github.com/opencv/opencv/pull/26797 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [x] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
20 lines
569 B
C
20 lines
569 B
C
/*
|
|
Copyright (C) 2005-2019 Intel Corporation
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef _LIBITTNOTIFY_H_
|
|
#define _LIBITTNOTIFY_H_
|
|
|
|
#ifndef __ITT_INTERNAL_INCLUDE
|
|
# if defined WIN32 || defined _WIN32
|
|
# pragma message("WARNING!!! Include file libittnotify.h is deprecated and should not be included anymore")
|
|
# else /* WIN32 */
|
|
# warning "Include file libittnotify.h is deprecated and should not be included anymore"
|
|
# endif /* WIN32 */
|
|
#endif /* __ITT_INTERNAL_INCLUDE */
|
|
#include "legacy/ittnotify.h"
|
|
|
|
#endif /* _LIBITTNOTIFY_H_ */
|