diff options
author | 2013-06-23 12:33:42 -0700 | |
---|---|---|
committer | 2013-11-02 14:19:50 -0700 | |
commit | 0ae7dbfc79b39d0aa1f56c650963efbec8092242 (patch) | |
tree | 59a8c386da37e84bd19cd4323f868b3757cfb116 | |
parent | 294dc29f7f33b566dec2f047ac4bb8ba28cd4702 (diff) | |
download | paludis-0ae7dbfc79b39d0aa1f56c650963efbec8092242.tar.gz paludis-0ae7dbfc79b39d0aa1f56c650963efbec8092242.tar.xz |
gemcutter: fix tag mismatches for forward declarations
This is a mechanical change to ensure that the type tag matches across the
forward declaration and the definition.
Signed-off-by: Saleem Abdulrasool <compnerd@compnerd.org>
-rw-r--r-- | paludis/repositories/gemcutter/gemcutter_id-fwd.hh | 2 | ||||
-rw-r--r-- | paludis/repositories/gemcutter/json_common-fwd.hh | 6 | ||||
-rw-r--r-- | paludis/repositories/gemcutter/json_things_handle-fwd.hh | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/paludis/repositories/gemcutter/gemcutter_id-fwd.hh b/paludis/repositories/gemcutter/gemcutter_id-fwd.hh index afb2a7c48..b6e9039cd 100644 --- a/paludis/repositories/gemcutter/gemcutter_id-fwd.hh +++ b/paludis/repositories/gemcutter/gemcutter_id-fwd.hh @@ -25,7 +25,7 @@ namespace paludis namespace gemcutter_repository { class GemcutterID; - class GemcutterIDParams; + struct GemcutterIDParams; } } diff --git a/paludis/repositories/gemcutter/json_common-fwd.hh b/paludis/repositories/gemcutter/json_common-fwd.hh index 545eb5f25..8d5a6956f 100644 --- a/paludis/repositories/gemcutter/json_common-fwd.hh +++ b/paludis/repositories/gemcutter/json_common-fwd.hh @@ -28,9 +28,9 @@ namespace paludis { class JSONError; - class GemJSONInfo; - class GemJSONDependency; - class GemJSONDependencies; + struct GemJSONInfo; + struct GemJSONDependency; + struct GemJSONDependencies; typedef std::function<void (const GemJSONInfo &)> ParsedOneGemCallback; } diff --git a/paludis/repositories/gemcutter/json_things_handle-fwd.hh b/paludis/repositories/gemcutter/json_things_handle-fwd.hh index 671fd4c47..5a02778eb 100644 --- a/paludis/repositories/gemcutter/json_things_handle-fwd.hh +++ b/paludis/repositories/gemcutter/json_things_handle-fwd.hh @@ -24,7 +24,7 @@ namespace paludis { namespace gemcutter_repository { - struct JSONThingsHandle; + class JSONThingsHandle; } } |