Skip to content

Commit

Permalink
chore(windows): fix noisy warning (react-native-webview#2460)
Browse files Browse the repository at this point in the history
  • Loading branch information
asklar authored Apr 26, 2022
1 parent 5e73b20 commit 80d03e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/ReactNativeWebView/ReactWebViewManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ namespace winrt::ReactNativeWebView::implementation {
if (isUrlEncodedForm)
{
auto formContent = winrt::single_threaded_observable_map<winrt::hstring, winrt::hstring>();
auto counter = 0u;
size_t counter = 0u;
auto current = formBody.find_first_of("&");
while (counter <= formBody.find_last_of("&"))
{
Expand Down

0 comments on commit 80d03e0

Please sign in to comment.