summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChase Douglas <chase.douglas@ubuntu.com>2011-12-07 12:40:30 -0800
committerChase Douglas <chase.douglas@ubuntu.com>2011-12-07 12:40:30 -0800
commit4f083dd6a3ea2473913d23aecf4d06f664f95bce (patch)
treed8c7f4efeb8ad802a537865f8fbd822682ba7ae9
parent8fe2c7c8bfc167c577674273f462f2d7c7a1a9fa (diff)
Reorder Process copy constructor declarations
-rw-r--r--include/xorg/gtest/process.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/xorg/gtest/process.h b/include/xorg/gtest/process.h
index 5aa288b..4215f7a 100644
--- a/include/xorg/gtest/process.h
+++ b/include/xorg/gtest/process.h
@@ -51,12 +51,12 @@ class Process {
pid_t Pid() const;
private:
+ struct Private;
+ Private* d_;
+
// Disable copy c'tor, assignment operator
Process(const Process&);
Process& operator=(const Process&);
-
- struct Private;
- Private* d_;
};
} // xorg