forked from microsoft/vcpkg
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mbedtls/nana] Update to the latest version (microsoft#13672)
* [mbedtls/nana] Update to the latest version * [nana] Remove unused patch and update patch EOF
- Loading branch information
1 parent
7a05bde
commit dcc7ddc
Showing
8 changed files
with
47 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
Source: nana | ||
Version: 1.7.2 | ||
Port-Version: 4 | ||
Version: 1.7.4 | ||
Homepage: https://github.com/cnjinhao/nana | ||
Description: Cross-platform library for GUI programming in modern C++ style. | ||
Build-Depends: libpng, libjpeg-turbo, freetype (!uwp&&!windows), fontconfig (!uwp&&!windows) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
diff --git a/include/nana/filesystem/filesystem.hpp b/include/nana/filesystem/filesystem.hpp | ||
index 86b907a..ea8db75 100644 | ||
--- a/include/nana/filesystem/filesystem.hpp | ||
+++ b/include/nana/filesystem/filesystem.hpp | ||
@@ -30,6 +30,7 @@ | ||
#ifndef NANA_FILESYSTEM_HPP | ||
#define NANA_FILESYSTEM_HPP | ||
#include <nana/push_ignore_diagnostic> | ||
+#define _SILENCE_EXPERIMENTAL_FILESYSTEM_DEPRECATION_WARNING | ||
diff --git a/source/system/split_string.cpp b/source/system/split_string.cpp | ||
index 8269db6..c40016b 100644 | ||
--- a/source/system/split_string.cpp | ||
+++ b/source/system/split_string.cpp | ||
@@ -18,7 +18,7 @@ std::vector<split_string_type> split_string (const split_string_type& text, char | ||
sep_pos = text.find(sep, sep_pos); | ||
sep_pos = (text.npos == sep_pos ? text.size() : sep_pos); | ||
const std::size_t end = sep_pos; | ||
- while (sep_pos < text.size() and sep == text[sep_pos]) { | ||
+ while (sep_pos < text.size() && sep == text[sep_pos]) { | ||
++sep_pos; | ||
} | ||
|
||
//Filesystem Selection | ||
#include <nana/config.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters