File: Remove-dead-timer-code-which-causes-FTBFS.patch

package info (click to toggle)
exactimage 1.0.2-8
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,088 kB
  • sloc: cpp: 35,709; ansic: 1,952; xml: 1,447; makefile: 328; perl: 138; sh: 108; python: 45; php: 37; ruby: 12
file content (57 lines) | stat: -rw-r--r-- 1,179 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
From: Jakub Wilk <jwilk@debian.org>
Date: Sat, 17 Mar 2012 17:18:49 +0100
Subject: Remove dead timer code which causes FTBFS

Disable dead code in utility/Timer.cc, as it is causing build failures on some
architectures.

Forwarded: yes
Last-Update: 2010-03-27
---
 utility/Timer.cc | 4 ++++
 utility/Timer.hh | 6 +++++-
 2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/utility/Timer.cc b/utility/Timer.cc
index 1783c69..5f9aa70 100644
--- a/utility/Timer.cc
+++ b/utility/Timer.cc
@@ -77,6 +77,8 @@ uint64_t Utility::TickTimer::PerSecond () const
 
 // ---
 
+#if 0 /* dead code */
+
 Utility::TimebaseTimer::TimebaseTimer ()
 {
   start_tick = Value ();
@@ -189,3 +191,5 @@ uint64_t Utility::TimebaseTimer::PerSecond () const
   
   return per_second;
 }
+
+#endif
diff --git a/utility/Timer.hh b/utility/Timer.hh
index 555987b..33e017d 100644
--- a/utility/Timer.hh
+++ b/utility/Timer.hh
@@ -98,7 +98,9 @@ namespace Utility
     struct tms m_times;
   };
 #endif
-  
+
+#if 0 /* dead code */
+
   class TimebaseTimer
   {
   public:
@@ -139,6 +141,8 @@ namespace Utility
     T m_timer;
     std::string m_text;
   };
+
+#endif
   
 } // end namespace utility