Bug 749678 - 2/5 - add include guards to thread_helpers.h - r=ehsan

This commit is contained in:
Benoit Jacob 2012-05-08 09:47:34 -04:00
parent 87c8149a38
commit ac64dc1951

View File

@ -38,6 +38,9 @@
// Cross-platform lightweight thread local data wrappers
#ifndef MOZ_THREAD_HELPER_H
#define MOZ_THREAD_HELPER_H
#if defined(XP_WIN)
// This file will get included in any file that wants to add
// a profiler mark. In order to not bring <windows.h> together
@ -114,3 +117,4 @@ inline bool create(key* mykey) {
}
#endif // MOZ_THREAD_HELPER_H