Commit 5758ff24 authored by Ivan Murashko's avatar Ivan Murashko Committed by Facebook GitHub Bot

Fix for compilation errors on a build without precompiled headers (#1438)

Summary:
Pull Request resolved: https://github.com/facebook/folly/pull/1438

The file `folly/experimental/io/test/IoTestTempFileUtil.h` does not have `pragma once` and can be included several times. It produces compilation errors.

Reviewed By: Orvid

Differential Revision: D23496733

fbshipit-source-id: 0309847f60992b21d07b2377d49539d78570fb09
parent eedb340b
......@@ -14,6 +14,8 @@
* limitations under the License.
*/
#pragma once
#include <glog/logging.h>
#include <folly/experimental/TestUtil.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment