summaryrefslogtreecommitdiff
path: root/src/value.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2012-02-10 10:25:37 -1000
committerJohn Wiegley <johnw@newartisans.com>2012-02-10 10:25:37 -1000
commit1afbd183d2e5ef202ab8f78efd9ff5b8e7b5cb94 (patch)
treee032467775cd27e9a0c9f8996d1f739d2bbc0466 /src/value.h
parentb57cff24bdbb90917f7278606ae2bb703fa47b34 (diff)
downloadfork-ledger-1afbd183d2e5ef202ab8f78efd9ff5b8e7b5cb94.tar.gz
fork-ledger-1afbd183d2e5ef202ab8f78efd9ff5b8e7b5cb94.tar.bz2
fork-ledger-1afbd183d2e5ef202ab8f78efd9ff5b8e7b5cb94.zip
Work around a bug in Clang 3.0 (already fixed in pre-3.1)
Diffstat (limited to 'src/value.h')
-rw-r--r--src/value.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.h b/src/value.h
index 7c507712..d4387f61 100644
--- a/src/value.h
+++ b/src/value.h
@@ -112,7 +112,6 @@ public:
ANY // a pointer to an arbitrary object
};
-private:
class storage_t
{
friend class value_t;
@@ -244,6 +243,7 @@ private:
#endif // HAVE_BOOST_SERIALIZATION
};
+private:
/**
* The actual data for each value_t is kept in reference counted storage.
* Data is modified using a copy-on-write policy.