diff options
author | 2013-02-24 19:18:18 -0800 | |
---|---|---|
committer | 2013-02-26 20:25:21 -0800 | |
commit | ac8b624f587237bf4b468883cab73b0d99e074ea (patch) | |
tree | 10523c98791c2d0df47d3993f9eb52d46eaf8f8f /paludis/util/process-fwd.hh | |
parent | 6bda8b8b0d4a872d68a814a055cc779e432d9a66 (diff) | |
download | paludis-ac8b624f587237bf4b468883cab73b0d99e074ea.tar.gz paludis-ac8b624f587237bf4b468883cab73b0d99e074ea.tar.xz |
fix tag mismatches
This is a mechanical change to address tag mismatches for forward declaration.
This is not an error, however, the sheer number of these warnings caused by the
extensive amount of forward declaration usage drowns out the errors. This has
no functional change.
Diffstat (limited to 'paludis/util/process-fwd.hh')
-rw-r--r-- | paludis/util/process-fwd.hh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/paludis/util/process-fwd.hh b/paludis/util/process-fwd.hh index 35fcd2ca2..4c7121a62 100644 --- a/paludis/util/process-fwd.hh +++ b/paludis/util/process-fwd.hh @@ -22,14 +22,14 @@ namespace paludis { - struct ProcessError; + class ProcessError; - struct ProcessCommand; + class ProcessCommand; - struct Process; + class Process; struct RunningProcessThread; - struct RunningProcessHandle; + class RunningProcessHandle; } #endif |