OSDN Git Service

An attempt to reduce build time
[winmerge-jp/winmerge-jp.git] / Src / DiffFileInfo.cpp
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /** 
3  * @file  DiffFileInfo.cpp
4  *
5  * @brief Implementation for DiffFileInfo routines
6  */
7
8 #include "pch.h"
9 #include "DiffFileInfo.h"
10 #include "DebugNew.h"
11
12 /**
13  * @brief Clears FileInfo data.
14  */
15 void DiffFileInfo::ClearPartial()
16 {
17         DirItem::ClearPartial();
18         version.Clear();
19         encoding.Clear();
20         m_textStats.clear();
21 }