aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-06-25 12:07:57 +0000
committerlloyd <[email protected]>2006-06-25 12:07:57 +0000
commite536c080164185e79d4e302afddc9e3810a9df23 (patch)
tree7892f44dc73668c29a4b1ca3c8c32ad3985d2319 /include
parenteae468a0bbbc0477510a64e0eb19a872b0aaefac (diff)
Fix two declarations that were incorrect.
Diffstat (limited to 'include')
-rw-r--r--include/libstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libstate.h b/include/libstate.h
index f699c9330..9cb9f81d5 100644
--- a/include/libstate.h
+++ b/include/libstate.h
@@ -40,7 +40,7 @@ class Library_State
void add_entropy(EntropySource&, bool);
u32bit seed_prng(bool, u32bit);
- void set_timer(Timer*);
+ void set_timer(class Timer*);
u64bit system_clock() const;
void set_option(const std::string&, const std::string&,
@@ -59,7 +59,7 @@ class Library_State
std::string transcode(const std::string,
Character_Set, Character_Set) const;
- Library_State(class Mutex_Factory*, class Timer*);
+ Library_State(class Mutex_Factory*);
~Library_State();
private:
Library_State(const Library_State&) {}