Bug 1368616 - Error compiling TestBlockingProcess.exe with MinGW: undefined reference to _imp___ZN7mozilla6UnusedE r=froydnj

This commit is contained in:
Jacek Caban 2017-06-21 11:47:11 +02:00
Родитель 17a1672b16
Коммит 09b68c9d97
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -7,6 +7,7 @@
#ifndef mozilla_unused_h
#define mozilla_unused_h
#include "mozilla/Attributes.h"
#include "mozilla/Types.h"
#ifdef __cplusplus
@ -20,7 +21,7 @@ namespace mozilla {
struct unused_t
{
template<typename T>
inline void
MOZ_ALWAYS_INLINE_EVEN_DEBUG void
operator<<(const T& /*unused*/) const {}
};