[ntcore, cscore, wpiutil] Standardize template impl files on .inc extension (NFC) (#3124)

This commit is contained in:
Tyler Veness
2021-05-25 22:19:30 -07:00
committed by GitHub
parent e7d9ba135c
commit 393bf23c0c
20 changed files with 28 additions and 28 deletions

View File

@@ -411,6 +411,6 @@ class HttpMultipartScanner {
} // namespace wpi
#include "HttpUtil.inl"
#include "HttpUtil.inc"
#endif // WPIUTIL_WPI_HTTPUTIL_H_

View File

@@ -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_

View File

@@ -86,6 +86,6 @@ class HttpWebSocketServerConnection
} // namespace wpi
#include "HttpWebSocketServerConnection.inl"
#include "HttpWebSocketServerConnection.inc"
#endif // WPIUTIL_WPI_HTTPWEBSOCKETSERVERCONNECTION_H_

View File

@@ -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_