Skip to content

Commit fd78fb2

Browse files
authored
Return precomp.hpp to ov_models to fix build (openvinotoolkit#22962)
### Details: - Restore src/tests/ov_helpers/ov_models/src/precomp.hpp, deleted in openvinotoolkit#22709 - Fix build with -DENABLE_FASTER_BUILD=ON key ### Tickets: - *ticket-id*
1 parent 1bdb931 commit fd78fb2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright (C) 2018-2023 Intel Corporation
2+
// SPDX-License-Identifier: Apache-2.0
3+
//
4+
5+
#pragma once
6+
7+
#include <algorithm>
8+
#include <cassert>
9+
#include <cctype>
10+
#include <cmath>
11+
#include <cstdlib>
12+
#include <cstring>
13+
#include <functional>
14+
#include <initializer_list>
15+
#include <iterator>
16+
#include <map>
17+
#include <memory>
18+
#include <numeric>
19+
#include <ostream>
20+
#include <set>
21+
#include <sstream>
22+
#include <string>
23+
#include <tuple>
24+
#include <type_traits>
25+
#include <typeinfo>
26+
#include <unordered_set>
27+
#include <utility>
28+
#include <vector>

0 commit comments

Comments
 (0)