Skip to content

Commit

Permalink
fix post #endif comment formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
w0lek committed Apr 5, 2024
1 parent 6586c12 commit e6c136f
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion vpr/src/server/bytearray.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,4 @@ class ByteArray : public std::vector<uint8_t> {

} // namespace comm

#endif // BYTEARRAY_H
#endif /* BYTEARRAY_H */
2 changes: 1 addition & 1 deletion vpr/src/server/commconstants.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ enum CMD {

} // namespace comm

#endif
#endif /* COMMCONSTS_H */
2 changes: 1 addition & 1 deletion vpr/src/server/convertutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ std::string getPrettyDurationStrFromMs(int64_t durationMs);
std::string getPrettySizeStrFromBytesNum(int64_t bytesNum);
std::string getTruncatedMiddleStr(const std::string& src, std::size_t num = DEFAULT_PRINT_STRING_MAX_NUM);

#endif // CONVERTUTILS_H
#endif /* CONVERTUTILS_H */
2 changes: 1 addition & 1 deletion vpr/src/server/gateio.h
Original file line number Diff line number Diff line change
Expand Up @@ -197,5 +197,5 @@ class GateIO

} // namespace server

#endif // GATEIO_H
#endif /* GATEIO_H */

2 changes: 1 addition & 1 deletion vpr/src/server/pathhelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ CritPathsResult calcCriticalPath(const std::string& type, int critPathNum, e_tim

} // namespace server

#endif // PATHHELPER_H
#endif /* PATHHELPER_H */
4 changes: 2 additions & 2 deletions vpr/src/server/serverupdate.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ gboolean update(gpointer);

} // namespace server

#endif // NO_GRAPHICS
#endif /* NO_GRAPHICS */

#endif // SERVERUPDATE_H
#endif /* SERVERUPDATE_H */
2 changes: 1 addition & 1 deletion vpr/src/server/task.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ using TaskPtr = std::unique_ptr<Task>;

} // namespace server

#endif // TASK_H
#endif /* TASK_H */
2 changes: 1 addition & 1 deletion vpr/src/server/telegrambuffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ class TelegramBuffer

} // namespace comm

#endif // TELEGRAMBUFFER_H
#endif /* TELEGRAMBUFFER_H */
2 changes: 1 addition & 1 deletion vpr/src/server/telegramframe.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ using TelegramFramePtr = std::shared_ptr<TelegramFrame>;

} // namespace comm

#endif // TELEGRAMFRAME_H
#endif /* TELEGRAMFRAME_H */
2 changes: 1 addition & 1 deletion vpr/src/server/telegramheader.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ class TelegramHeader {

} // namespace comm

#endif // TELEGRAMHEADER_H
#endif /* TELEGRAMHEADER_H */
2 changes: 1 addition & 1 deletion vpr/src/server/telegramoptions.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ class TelegramOptions {

} // namespace server

#endif // TELEGRAMOPTIONS_H
#endif /* TELEGRAMOPTIONS_H */
2 changes: 1 addition & 1 deletion vpr/src/server/telegramparser.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ class TelegramParser {

} // namespace comm

#endif // TELEGRAMPARSER_H
#endif /* TELEGRAMPARSER_H */
2 changes: 1 addition & 1 deletion vpr/src/server/zlibutils.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
std::string tryCompress(const std::string& decompressed);
std::string tryDecompress(const std::string& compressed);

#endif
#endif /* ZLIBUTILS_H */

0 comments on commit e6c136f

Please sign in to comment.