]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/tools/vcpkg/ports/tinyxml/0001_use_stl.patch
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / tools / vcpkg / ports / tinyxml / 0001_use_stl.patch
CommitLineData
1e59de90
TL
1From 5ca492fee93015411a0f10e0b2f1d3503bf962a1 Mon Sep 17 00:00:00 2001
2From: Mikhail Paulyshka <me@mixaill.tk>
3Date: Sun, 3 Sep 2017 21:43:36 +0300
4Subject: [PATCH] enforce STL usage
5
6---
7 tinyxml.h | 4 ++++
8 1 file changed, 4 insertions(+)
9
10diff --git a/tinyxml.h b/tinyxml.h
11index a3589e5..7195033 100644
12--- a/tinyxml.h
13+++ b/tinyxml.h
14@@ -43,6 +43,10 @@ distribution.
15 #define DEBUG
16 #endif
17
18+#ifndef TIXML_USE_STL
19+#define TIXML_USE_STL
20+#endif
21+
22 #ifdef TIXML_USE_STL
23 #include <string>
24 #include <iostream>
25--
262.12.2.windows.2
27