diff options
author | Max Kellermann <max@duempel.org> | 2014-02-06 07:19:12 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-02-06 07:19:14 +0100 |
commit | 522ad4cca656d5efbd5c424eb995ec4784a3179f (patch) | |
tree | 00b1d867392572e6d607ac6ad1df33a24605f07b /src | |
parent | dc76b24e5f45a7dd43cb681881c296cb2f492e65 (diff) | |
download | mpd-522ad4cca656d5efbd5c424eb995ec4784a3179f.tar.gz mpd-522ad4cca656d5efbd5c424eb995ec4784a3179f.tar.xz mpd-522ad4cca656d5efbd5c424eb995ec4784a3179f.zip |
Instance: narrow "storage" to class Storage
Diffstat (limited to 'src')
-rw-r--r-- | src/Instance.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Instance.hxx b/src/Instance.hxx index ca129ce80..131a71fc3 100644 --- a/src/Instance.hxx +++ b/src/Instance.hxx @@ -31,7 +31,7 @@ class NeighborGlue; #ifdef ENABLE_DATABASE #include "db/DatabaseListener.hxx" class Database; -class LocalStorage; +class Storage; class UpdateService; #endif @@ -63,7 +63,7 @@ struct Instance final #ifdef ENABLE_DATABASE Database *database; - LocalStorage *storage; + Storage *storage; UpdateService *update; #endif |