Moved comment after include line so include order is determined properly (#680)

This commit is contained in:
Tyler Veness
2017-10-21 15:28:46 -07:00
committed by Peter Johnson
parent 3c842d8234
commit 0521d85048

View File

@@ -7,20 +7,19 @@
#include "HAL/Notifier.h"
// For std::atexit()
#include <cstdlib>
#include <atomic>
#include <cstdlib> // For std::atexit()
#include <memory>
#include <mutex>
#include <support/SafeThread.h>
#include "HAL/ChipObject.h"
#include "HAL/Errors.h"
#include "HAL/HAL.h"
#include "HAL/cpp/NotifierInternal.h"
#include "HAL/cpp/make_unique.h"
#include "HAL/handles/UnlimitedHandleResource.h"
#include "support/SafeThread.h"
using namespace hal;