Enable type_index on Windows (#8377)
This commit is contained in:
parent
05d7f793ec
commit
ae45437677
@ -17,7 +17,7 @@ limitations under the License.
|
|||||||
#define TENSORFLOW_FRAMEWORK_TYPE_INDEX_H_
|
#define TENSORFLOW_FRAMEWORK_TYPE_INDEX_H_
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#ifdef __GXX_RTTI
|
#if defined(__GXX_RTTI) || defined(_CPPRTTI)
|
||||||
#include <typeindex>
|
#include <typeindex>
|
||||||
#include <typeinfo>
|
#include <typeinfo>
|
||||||
#endif // __GXX_RTTI
|
#endif // __GXX_RTTI
|
||||||
@ -30,7 +30,7 @@ namespace tensorflow {
|
|||||||
// binary sizes. The following #ifdef section provides a non-RTTI
|
// binary sizes. The following #ifdef section provides a non-RTTI
|
||||||
// replacement for std::type_index (with a minimal set of functions needed by
|
// replacement for std::type_index (with a minimal set of functions needed by
|
||||||
// the TensorFlow framework, and more can be added if necessary).
|
// the TensorFlow framework, and more can be added if necessary).
|
||||||
#ifndef __GXX_RTTI
|
#if !defined(__GXX_RTTI) && !defined(_CPPRTTI)
|
||||||
|
|
||||||
// A thin TypeIndex class that mimics std::type_index but does not use RTTI. As
|
// A thin TypeIndex class that mimics std::type_index but does not use RTTI. As
|
||||||
// a result, it does not provide the actual name of the type, and only returns a
|
// a result, it does not provide the actual name of the type, and only returns a
|
||||||
|
Loading…
Reference in New Issue
Block a user