Skip to content

Commit

Permalink
NOLINT
Browse files Browse the repository at this point in the history
  • Loading branch information
Chong Liu committed Jan 26, 2024
1 parent 2c797b9 commit 2a60cc5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion F01_Common_Functions/src/commonQueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @Description : 通用队列源文件
*/
/* Common function configuration file (通用函数配置文件) */
#include "compile_cfg.h"
#include "compile_cfg.h" /* NOLINT */
#if COMMON_QUEUE_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonQueue.h"
Expand Down
4 changes: 2 additions & 2 deletions F01_Common_Functions/src/commonRingBuffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
* @Author : Chong Liu | truegrit [email protected]
* @CreateDate : 2023-09-18 22:40:08
* @LastEditors : Chong Liu
* @LastEditTime : 2024-01-12 17:00:55
* @LastEditTime : 2024-01-26 11:36:34
* =================================================================================
* Copyright (c) 2023 by Chong Liu, All Rights Reserved.
* =================================================================================
* @Description : 通用环形缓冲区源文件
*/
/* Common function configuration file (通用函数配置文件) */
#include "compile_cfg.h"
#include "compile_cfg.h" /* NOLINT */
#if COMMON_RING_BUFFER_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonRingBuffer.h"
Expand Down
6 changes: 3 additions & 3 deletions F01_Common_Functions/src/commonSingleValue.c
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
/*
* @FilePath : \Practice_LeetCode_C\00_Basics\01_Common_Func\src\commonSingleValue.c
* @FilePath : \Practice_LeetCode_C\F01_Common_Functions\src\commonSingleValue.c
* @Author : Chong Liu
* @CreateDate : 2023-10-22 11:55:54
* @LastEditors : Chong Liu
* @LastEditTime : 2023-11-23 11:14:55
* @LastEditTime : 2024-01-26 11:36:47
* =================================================================================
* Copyright (c) 2023 by Chong Liu, All Rights Reserved.
* =================================================================================
* @Description : 通用单值函数源文件
*/
/* Common function configuration file (通用函数配置文件) */
#include "compile_cfg.h"
#include "compile_cfg.h" /* NOLINT */
#if COMMON_SINGLE_VALUE_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonSingleValue.h"
Expand Down
2 changes: 1 addition & 1 deletion F01_Common_Functions/src/commonStack.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @Description : 通用栈源文件
*/
/* Common function configuration file (通用函数配置文件) */
#include "compile_cfg.h"
#include "compile_cfg.h" /* NOLINT */
#if COMMON_STACK_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonStack.h"
Expand Down
2 changes: 1 addition & 1 deletion F01_Common_Functions/src/commonString.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @Description : 通用字符串源文件
*/
/* Common function configuration file (通用函数配置文件) */
#include "compile_cfg.h"
#include "compile_cfg.h" /* NOLINT */
#if COMMON_STRING_EN /* whether compile this file, the definition of this macro can be found in compileCfg.h */
/* Header file (本文件头文件) */
#include "commonString.h"
Expand Down

0 comments on commit 2a60cc5

Please sign in to comment.