diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-11-29 21:18:24 +0200 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2019-11-29 21:23:25 +0200 |
commit | 98fbd1cdffaa69357091cc67e959ac21119dfa16 (patch) | |
tree | c96705619b933d9126b2f94cef8be461b1950ef6 /src/qt/peertablemodel.cpp | |
parent | b66861e2e5e8a49e11e7489cf22c3007bc7082cc (diff) |
Use correct C++11 header for std::swap()
Diffstat (limited to 'src/qt/peertablemodel.cpp')
-rw-r--r-- | src/qt/peertablemodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/peertablemodel.cpp b/src/qt/peertablemodel.cpp index af2a1bb0e5..514ff35bcd 100644 --- a/src/qt/peertablemodel.cpp +++ b/src/qt/peertablemodel.cpp @@ -10,7 +10,7 @@ #include <interfaces/node.h> -#include <algorithm> +#include <utility> #include <QDebug> #include <QList> |