Fix errors from new cpplint.py (#7105)

This commit is contained in:
Tyler Veness
2024-09-20 17:43:39 -07:00
committed by GitHub
parent f1dde8895e
commit 554024767e
464 changed files with 1026 additions and 218 deletions

View File

@@ -10,7 +10,9 @@
#include <chrono>
#include <cstdio>
#include <cstring>
#include <string>
#include <thread>
#include <utility>
#include <GLFW/glfw3.h>
#include <IconsFontAwesome6.h>

View File

@@ -14,6 +14,8 @@
#include <unistd.h>
#endif
#include <string>
void wpi::gui::OpenURL(const std::string& url) {
#ifdef _WIN32
ShellExecuteA(nullptr, "open", url.c_str(), nullptr, nullptr, SW_SHOWNORMAL);