1
0
鏡像自 https://github.com/minetest/irrlicht.git 已同步 2025-07-02 08:10:26 +02:00

Replace non-leading tabs with spaces, using:

find -type f |  # list all regular files
  grep -E '\.(h|cpp|mm)$' |  # filter for source files
  grep -v '/mt_' |  # filter out generated files
  grep -v '/vendor/' | # and vendored GL
  xargs -n 1 -P $(nproc) ./replace_non_leading_tabs.lua  # reformat everything
此提交包含在:
Desour
2024-03-21 17:30:28 +01:00
父節點 58783e4ca3
當前提交 e7bbbf9e30
共有 42 個檔案被更改,包括 537 行新增537 行删除

查看文件

@ -68,7 +68,7 @@ private:
SExposedVideoData CurrentContext;
XVisualInfo *VisualInfo;
void *glxFBConfig; // GLXFBConfig
XID GlxWin; // GLXWindow
XID GlxWin; // GLXWindow
};
}
}