Fix header sorting of libssh (#5507)

This commit is contained in:
Tyler Veness
2023-08-05 14:16:55 -07:00
committed by GitHub
parent 75cbd9d6d0
commit 338f37d302
7 changed files with 11 additions and 11 deletions

View File

@@ -23,6 +23,7 @@ includeOtherLibs {
^fmt/
^glass/
^imgui
^libssh/
^portable-file-dialog
^wpi/
^wpigui

View File

@@ -4,11 +4,11 @@
#include "App.h"
#include <libssh/libssh.h>
#include <memory>
#include <string_view>
#include <libssh/libssh.h>
#define IMGUI_DEFINE_MATH_OPERATORS
#include <glass/Context.h>

View File

@@ -4,8 +4,6 @@
#include "Downloader.h"
#include <libssh/sftp.h>
#ifdef _WIN32
#include <fcntl.h>
#include <io.h>
@@ -20,6 +18,7 @@
#include <glass/Storage.h>
#include <imgui.h>
#include <imgui_stdlib.h>
#include <libssh/sftp.h>
#include <portable-file-dialogs.h>
#include <wpi/StringExtras.h>
#include <wpi/fs.h>

View File

@@ -4,15 +4,15 @@
#pragma once
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include <span>
#include <stdexcept>
#include <string>
#include <string_view>
#include <vector>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
namespace sftp {
struct Attributes {

View File

@@ -22,6 +22,7 @@ includeOtherLibs {
^GLFW
^fmt/
^imgui
^libssh/
^ntcore
^wpi/
^wpigui

View File

@@ -5,8 +5,6 @@
#include "SshSession.h"
#include <fcntl.h>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include <stdint.h>
#include <sys/stat.h>
@@ -14,6 +12,8 @@
#include <stdexcept>
#include <fmt/format.h>
#include <libssh/libssh.h>
#include <libssh/sftp.h>
#include <wpi/Logger.h>
using namespace sysid;

View File

@@ -4,12 +4,11 @@
#pragma once
#include <libssh/libssh.h>
#include <stdexcept>
#include <string>
#include <string_view>
#include <libssh/libssh.h>
#include <wpi/Logger.h>
namespace sysid {