Skip to content

Commit 2252eaf

Browse files
author
Jan Wilmans
committed
removed redundant leftover pragmas after moving to cmake
1 parent 320d748 commit 2252eaf

7 files changed

Lines changed: 6 additions & 20 deletions

File tree

application/DebugViewppLib/DebugView++Lib.h

Lines changed: 1 addition & 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
#pragma once
@@ -18,5 +18,3 @@
1818
#include "PipeReader.h"
1919
#include "Process.h"
2020
#include "ProcessReader.h"
21-
22-
#pragma comment(lib, "DebugView++Lib.lib")

application/include/CobaltFusion/CircularBuffer.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#include <string>
1010
#include "noncopyable.h"
1111

12-
#pragma comment(lib, "CobaltFusion.lib")
13-
1412
namespace fusion {
1513

1614
class CircularBuffer : fusion::noncopyable

application/include/CobaltFusion/JobDispatcher.h

Lines changed: 5 additions & 7 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
#pragma once
@@ -13,19 +13,17 @@
1313
#include <boost/noncopyable.hpp>
1414
#include <boost/signals2.hpp>
1515

16-
#pragma comment(lib, "CobaltFusion.lib")
17-
1816
namespace fusion {
1917

2018
// Two use cases are supported by JobDispatcher
21-
//
19+
//
2220
// 1) BackgroundDispatcher
2321
// any Queue'd jobs by the caller will then be executed on a background thread until stop is called.
2422
//
2523
// 2) OnDemandDispatcher
2624
// call ExecuteQueuedJobs() to have the queued jobs executed on the caller thread
27-
//
28-
25+
//
26+
2927
typedef std::function<void()> Job;
3028

3129
class JobDispatcher
@@ -34,7 +32,7 @@ class JobDispatcher
3432
JobDispatcher();
3533
virtual ~JobDispatcher();
3634

37-
// guarentees and all jobs queued before Flush() have been executed
35+
// guarentees and all jobs queued before Flush() have been executed
3836
virtual void Flush();
3937

4038
// returns immediately after queueing

application/include/DebugViewppLib/Filter.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
#include <vector>
1616
#include <unordered_map>
1717

18-
#pragma comment(lib, "DebugView++Lib.lib")
19-
2018
namespace fusion {
2119
namespace debugviewpp {
2220

application/include/DebugViewppLib/LogSources.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
#include "DebugviewppLib/ProcessMonitor.h"
1616
#include "CobaltFusion/Throttle.h"
1717

18-
#pragma comment(lib, "DebugView++Lib.lib")
19-
2018
namespace fusion {
2119
namespace debugviewpp {
2220

application/include/DebugViewppLib/ProcessInfo.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
#include "windows.h"
1212

13-
#pragma comment(lib, "DebugView++Lib.lib")
14-
1513
namespace fusion {
1614
namespace debugviewpp {
1715

application/include/IndexedStorageLib/IndexedStorage.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@
99
#include <string>
1010
#include <limits>
1111

12-
#pragma comment(lib, "IndexedStorageLib.lib")
13-
1412
namespace fusion {
1513
namespace indexedstorage {
1614

0 commit comments

Comments
 (0)