From 1e3269c0863bfac26be9e9239b6427ea77c6175b Mon Sep 17 00:00:00 2001 From: Sergio Ahumada Date: Sat, 15 Sep 2012 18:29:50 +0200 Subject: network: Fix missing or improper include guard in headers Use an include guard in headers to ensure the header is not included more than once. Make the header guard match its file name. Also, cpp files should include their own headers first (but below config.h) Change-Id: Iecf5da23c0f8e6d457f67657b88ef7557bde9669 Reviewed-by: Thiago Macieira --- src/network/ssl/qsslcipher_p.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/network/ssl/qsslcipher_p.h') diff --git a/src/network/ssl/qsslcipher_p.h b/src/network/ssl/qsslcipher_p.h index eadb4eacf3..4d451d031e 100644 --- a/src/network/ssl/qsslcipher_p.h +++ b/src/network/ssl/qsslcipher_p.h @@ -39,6 +39,8 @@ ** ****************************************************************************/ +#ifndef QSSLCIPHER_P_H +#define QSSLCIPHER_P_H #include "qsslcipher.h" @@ -76,3 +78,5 @@ public: }; QT_END_NAMESPACE + +#endif // QSSLCIPHER_P_H -- cgit v1.2.3