aboutsummaryrefslogtreecommitdiff
path: root/ports/sqlpp11/FixForMSVC.patch
diff options
context:
space:
mode:
authorStefano Sinigardi <stesinigardi@hotmail.com>2019-10-07 19:35:13 +0200
committerCurtis J Bezault <curtbezault@gmail.com>2019-10-07 10:35:13 -0700
commit726c11148105a97aef39bec024fdb7c140b1b154 (patch)
tree26bd2aee0c13a8351b259cc4ffffaf0efededb4e /ports/sqlpp11/FixForMSVC.patch
parente86ff2cc54bda9e9ee322ab69141e7113d5c40a9 (diff)
downloadvcpkg-726c11148105a97aef39bec024fdb7c140b1b154.tar.gz
vcpkg-726c11148105a97aef39bec024fdb7c140b1b154.zip
[vcpkg] fatal_error when patch fails to apply (#8087)
vcpkg will now fail on failure to apply patches except when using `--head`.
Diffstat (limited to 'ports/sqlpp11/FixForMSVC.patch')
-rw-r--r--ports/sqlpp11/FixForMSVC.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/ports/sqlpp11/FixForMSVC.patch b/ports/sqlpp11/FixForMSVC.patch
deleted file mode 100644
index 753590707..000000000
--- a/ports/sqlpp11/FixForMSVC.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/include/sqlpp11/char_sequence.h b/include/sqlpp11/char_sequence.h
-index 5759525..96cdbd0 100644
---- a/include/sqlpp11/char_sequence.h
-+++ b/include/sqlpp11/char_sequence.h
-@@ -54,16 +54,16 @@ namespace sqlpp
- }
- };
-
-- template <std::size_t N, const char (&s)[N], typename T>
-+ template <std::size_t N, const char* s, typename T>
- struct make_char_sequence_impl;
-
-- template <std::size_t N, const char (&s)[N], std::size_t... i>
-+ template <std::size_t N, const char* s, std::size_t... i>
- struct make_char_sequence_impl<N, s, sqlpp::detail::index_sequence<i...>>
- {
- using type = char_sequence<s[i]...>;
- };
-
-- template <std::size_t N, const char (&Input)[N]>
-+ template <std::size_t N, const char* Input>
- using make_char_sequence =
- typename make_char_sequence_impl<N, Input, sqlpp::detail::make_index_sequence<N - 1>>::type;
- } // namespace sqlpp