mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
[ntcore, cscore, wpiutil] Standardize template impl files on .inc extension (NFC) (#3124)
This commit is contained in:
@@ -411,6 +411,6 @@ class HttpMultipartScanner {
|
||||
|
||||
} // namespace wpi
|
||||
|
||||
#include "HttpUtil.inl"
|
||||
#include "HttpUtil.inc"
|
||||
|
||||
#endif // WPIUTIL_WPI_HTTPUTIL_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// 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.
|
||||
|
||||
#ifndef WPIUTIL_WPI_HTTPUTIL_INL_
|
||||
#define WPIUTIL_WPI_HTTPUTIL_INL_
|
||||
#ifndef WPIUTIL_WPI_HTTPUTIL_INC_
|
||||
#define WPIUTIL_WPI_HTTPUTIL_INC_
|
||||
|
||||
#include <utility>
|
||||
|
||||
@@ -52,4 +52,4 @@ void HttpRequest::SetPath(StringRef path_, const T& params) {
|
||||
|
||||
} // namespace wpi
|
||||
|
||||
#endif // WPIUTIL_WPI_HTTPUTIL_INL_
|
||||
#endif // WPIUTIL_WPI_HTTPUTIL_INC_
|
||||
@@ -86,6 +86,6 @@ class HttpWebSocketServerConnection
|
||||
|
||||
} // namespace wpi
|
||||
|
||||
#include "HttpWebSocketServerConnection.inl"
|
||||
#include "HttpWebSocketServerConnection.inc"
|
||||
|
||||
#endif // WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_H_
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
// 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.
|
||||
|
||||
#ifndef WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INL_
|
||||
#define WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INL_
|
||||
#ifndef WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INC_
|
||||
#define WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INC_
|
||||
|
||||
#include <memory>
|
||||
|
||||
@@ -52,4 +52,4 @@ HttpWebSocketServerConnection<Derived>::HttpWebSocketServerConnection(
|
||||
|
||||
} // namespace wpi
|
||||
|
||||
#endif // WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INL_
|
||||
#endif // WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_INC_
|
||||
Reference in New Issue
Block a user