aboutsummaryrefslogtreecommitdiff
path: root/ports/libpqxx/fix-deprecated-bug.patch
diff options
context:
space:
mode:
authorJonLiu1993 <63675417+JonLiu1993@users.noreply.github.com>2020-10-17 03:36:47 +0800
committerGitHub <noreply@github.com>2020-10-16 12:36:47 -0700
commitc2e6708f5272380cdeaa400e54423ef3168794fa (patch)
tree273f4b7929fa077d014877dd9f32445b4952f8e0 /ports/libpqxx/fix-deprecated-bug.patch
parent17d58f174250bb6400c6e59600e6719863adf3f4 (diff)
downloadvcpkg-c2e6708f5272380cdeaa400e54423ef3168794fa.tar.gz
vcpkg-c2e6708f5272380cdeaa400e54423ef3168794fa.zip
[libpqxx] Update to 7.2.0 (#14067)
* [libpqxx] Update to 7.1.2 * [libpqxx] Update to 7.2.0 * Update ports/libpqxx/portfile.cmake Co-authored-by: NancyLi1013 <46708020+NancyLi1013@users.noreply.github.com>
Diffstat (limited to 'ports/libpqxx/fix-deprecated-bug.patch')
-rw-r--r--ports/libpqxx/fix-deprecated-bug.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/ports/libpqxx/fix-deprecated-bug.patch b/ports/libpqxx/fix-deprecated-bug.patch
deleted file mode 100644
index d3486be7a..000000000
--- a/ports/libpqxx/fix-deprecated-bug.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-diff --git a/include/pqxx/tablereader.hxx b/include/pqxx/tablereader.hxx
-index f5300cb..0cc0e43 100644
---- a/include/pqxx/tablereader.hxx
-+++ b/include/pqxx/tablereader.hxx
-@@ -34,13 +34,13 @@ public:
- const std::string &Name,
- const std::string &Null=std::string{});
- template<typename ITER>
-- PQXX_DEPRECATED tablereader(
-+ tablereader(
- transaction_base &,
- const std::string &Name,
- ITER begincolumns,
- ITER endcolumns);
- template<typename ITER>
-- PQXX_DEPRECATED tablereader(
-+ tablereader(
- transaction_base &,
- const std::string &Name,
- ITER begincolumns,
-diff --git a/include/pqxx/tablewriter.hxx b/include/pqxx/tablewriter.hxx
-index 32e7a98..a25b356 100644
---- a/include/pqxx/tablewriter.hxx
-+++ b/include/pqxx/tablewriter.hxx
-@@ -36,13 +36,13 @@ public:
- const std::string &WName,
- const std::string &Null=std::string{});
- template<typename ITER>
-- PQXX_DEPRECATED tablewriter(
-+ tablewriter(
- transaction_base &,
- const std::string &WName,
- ITER begincolumns,
- ITER endcolumns);
- template<typename ITER>
-- PQXX_DEPRECATED tablewriter(
-+ tablewriter(
- transaction_base &T,
- const std::string &WName,
- ITER begincolumns,