Skip to content

Commit e87fc5e

Browse files
committed
added missing reference and some whitespace cleanup
1 parent 9b73425 commit e87fc5e

File tree

12 files changed

+25
-25
lines changed

12 files changed

+25
-25
lines changed

DebugView++/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
#define VERSION 1,7,0,93
2-
#define VERSION_STR "1.7.0.93"
1+
#define VERSION 1,7,0,97
2+
#define VERSION_STR "1.7.0.97"

DebugViewConsole/DebugViewConsole.vcxproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@
172172
<ItemGroup>
173173
<None Include="packages.config" />
174174
</ItemGroup>
175+
<ItemGroup>
176+
<ProjectReference Include="..\DebugView++Lib\DebugView++Lib.vcxproj">
177+
<Project>{5e5b7c33-8076-4e21-adf3-d56c8c28822a}</Project>
178+
</ProjectReference>
179+
</ItemGroup>
175180
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
176181
<ImportGroup Label="ExtensionTargets">
177182
<Import Project="..\packages\boost.1.64.0.0\build\native\boost.targets" Condition="Exists('..\packages\boost.1.64.0.0\build\native\boost.targets')" />

include/DebugView++Lib/DBWinBuffer.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/
@@ -23,5 +23,5 @@ bool IsWindowsVistaOrGreater();
2323
bool IsDBWinViewerActive();
2424
bool HasGlobalDBWinReaderRights();
2525

26-
} // namespace debugviewpp
26+
} // namespace debugviewpp
2727
} // namespace fusion

include/DebugView++Lib/DBWinReader.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/
@@ -42,5 +42,5 @@ class DBWinReader : public LogSource
4242
const DbWinBuffer* m_dbWinBuffer;
4343
};
4444

45-
} // namespace debugviewpp
45+
} // namespace debugviewpp
4646
} // namespace fusion

include/DebugView++Lib/FileReader.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ class FileReader : public LogSource
2525
~FileReader() override;
2626

2727
void Initialize() override;
28-
typedef boost::signals2::signal<void()> UpdateSignal;
29-
boost::signals2::connection SubscribeToUpdate(UpdateSignal::slot_type slot);
30-
31-
bool AtEnd() const override;
28+
typedef boost::signals2::signal<void()> UpdateSignal;
29+
boost::signals2::connection SubscribeToUpdate(UpdateSignal::slot_type slot);
30+
31+
bool AtEnd() const override;
3232
HANDLE GetHandle() const override;
3333
void Notify() override;
3434
void PreProcess(Line& line) const override;
@@ -40,7 +40,6 @@ class FileReader : public LogSource
4040
FileType::type m_fileType;
4141

4242
private:
43-
4443
void SafeAddLine(const std::string& line);
4544
void ReadUntilEof();
4645

include/DebugView++Lib/FileWriter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/
@@ -25,11 +25,11 @@ class FileWriter
2525

2626
private:
2727
void Run();
28-
28+
2929
std::ofstream m_ofstream;
3030
LogFile& m_logfile;
3131
std::thread m_thread;
3232
};
3333

34-
} // namespace debugviewpp
34+
} // namespace debugviewpp
3535
} // namespace fusion

include/DebugView++Lib/Line.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
#include <string>
1111
#include <vector>
12-
#include <memory>
1312

1413
namespace fusion {
1514
namespace debugviewpp {

include/DebugView++Lib/LogFilter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/
@@ -27,5 +27,5 @@ void SaveJson(const std::string& fileName, const std::string& name, const LogFil
2727
FilterData LoadXml(const std::string& fileName);
2828
FilterData LoadJson(const std::string& fileName);
2929

30-
} // namespace debugviewpp
30+
} // namespace debugviewpp
3131
} // namespace fusion

include/DebugView++Lib/LogSources.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@
1111
#include <boost/signals2.hpp>
1212
#include "Win32/Win32Lib.h"
1313
#include "DebugView++Lib/LogSource.h"
14-
#include "DebugView++Lib/LineBuffer.h"
1514
#include "DebugView++Lib/VectorLineBuffer.h"
16-
#include "CobaltFusion/CircularBuffer.h"
1715
#include "CobaltFusion/ExecutorClient.h"
18-
#include "CobaltFusion/thread.h"
1916
#include "DebugView++Lib/NewlineFilter.h"
2017
#include "DebugView++Lib/ProcessMonitor.h"
2118
#include "CobaltFusion/Throttle.h"

include/IndexedStorageLib/IndexedStorage.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/
@@ -54,6 +54,6 @@ class SnappyStorage
5454

5555
std::vector<std::string> m_storage;
5656
};
57-
58-
} // namespace indexedstorage
57+
58+
} // namespace indexedstorage
5959
} // namespace fusion

include/Win32/Utilities.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/

include/Win32/Window.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// (C) Copyright Gert-Jan de Vos and Jan Wilmans 2013.
22
// Distributed under the Boost Software License, Version 1.0.
3-
// (See accompanying file LICENSE_1_0.txt or copy at
3+
// (See accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
55

66
// Repository at: https://github.com/djeedjay/DebugViewPP/

0 commit comments

Comments
 (0)