mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
SCRIPT Run cc include replacements
This commit is contained in:
committed by
Peter Johnson
parent
f0a3c64121
commit
7c6efa41ae
@@ -2,7 +2,7 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/DataLog.h"
|
||||
#include "wpi/datalog/DataLog.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <bit>
|
||||
@@ -13,11 +13,11 @@
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <wpi/Endian.h>
|
||||
#include <wpi/Logger.h>
|
||||
#include <wpi/SmallString.h>
|
||||
#include <wpi/print.h>
|
||||
#include <wpi/timestamp.h>
|
||||
#include "wpi/util/Endian.hpp"
|
||||
#include "wpi/util/Logger.hpp"
|
||||
#include "wpi/util/SmallString.hpp"
|
||||
#include "wpi/util/print.hpp"
|
||||
#include "wpi/util/timestamp.h"
|
||||
|
||||
using namespace wpi::log;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/DataLogBackgroundWriter.h"
|
||||
#include "wpi/datalog/DataLogBackgroundWriter.hpp"
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <unistd.h>
|
||||
@@ -24,8 +24,8 @@
|
||||
|
||||
#include <fmt/format.h>
|
||||
|
||||
#include "wpi/Logger.h"
|
||||
#include "wpi/fs.h"
|
||||
#include "wpi/util/Logger.hpp"
|
||||
#include "wpi/util/fs.hpp"
|
||||
|
||||
using namespace wpi::log;
|
||||
|
||||
|
||||
@@ -2,14 +2,14 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/DataLogReader.h"
|
||||
#include "wpi/datalog/DataLogReader.hpp"
|
||||
|
||||
#include <bit>
|
||||
#include <utility>
|
||||
|
||||
#include <wpi/Endian.h>
|
||||
#include "wpi/util/Endian.hpp"
|
||||
|
||||
#include "wpi/datalog/DataLog.h"
|
||||
#include "wpi/datalog/DataLog.hpp"
|
||||
|
||||
using namespace wpi::log;
|
||||
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/DataLogReaderThread.h"
|
||||
#include "wpi/datalog/DataLogReaderThread.hpp"
|
||||
|
||||
#include <string>
|
||||
#include <utility>
|
||||
|
||||
#include <wpi/StringExtras.h>
|
||||
#include <wpi/print.h>
|
||||
#include "wpi/util/StringExtras.hpp"
|
||||
#include "wpi/util/print.hpp"
|
||||
|
||||
using namespace wpi::log;
|
||||
|
||||
|
||||
@@ -2,13 +2,13 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/DataLogWriter.h"
|
||||
#include "wpi/datalog/DataLogWriter.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include <wpi/raw_ostream.h>
|
||||
#include "wpi/util/raw_ostream.hpp"
|
||||
|
||||
using namespace wpi::log;
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "wpi/datalog/FileLogger.h"
|
||||
#include "wpi/datalog/FileLogger.hpp"
|
||||
|
||||
#ifdef __linux__
|
||||
#include <fcntl.h>
|
||||
@@ -18,7 +18,7 @@
|
||||
#include <utility>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <wpi/StringExtras.h>
|
||||
#include "wpi/util/StringExtras.hpp"
|
||||
|
||||
namespace wpi::log {
|
||||
FileLogger::FileLogger(std::string_view file,
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
// Open Source Software; you can modify and/or share it under the terms of
|
||||
// the WPILib BSD license file in the root directory of this project.
|
||||
|
||||
#include "DataLogJNI.h"
|
||||
#include "DataLogJNI.hpp"
|
||||
|
||||
#include <jni.h>
|
||||
|
||||
@@ -11,13 +11,13 @@
|
||||
#include <vector>
|
||||
|
||||
#include <fmt/format.h>
|
||||
#include <wpi/jni_util.h>
|
||||
#include "wpi/util/jni_util.hpp"
|
||||
|
||||
#include "org_wpilib_datalog_DataLogJNI.h"
|
||||
#include "wpi/datalog/DataLog.h"
|
||||
#include "wpi/datalog/DataLogBackgroundWriter.h"
|
||||
#include "wpi/datalog/DataLogWriter.h"
|
||||
#include "wpi/datalog/FileLogger.h"
|
||||
#include "wpi/datalog/DataLog.hpp"
|
||||
#include "wpi/datalog/DataLogBackgroundWriter.hpp"
|
||||
#include "wpi/datalog/DataLogWriter.hpp"
|
||||
#include "wpi/datalog/FileLogger.hpp"
|
||||
|
||||
using namespace wpi::java;
|
||||
using namespace wpi::log;
|
||||
|
||||
Reference in New Issue
Block a user