MQL5Book/Include/Warnings.mqh
2025-06-12 13:40:26 +01:00

11 lines
540 B
MQL5

//+------------------------------------------------------------------+
//| Warnings.mqh |
//| Copyright 2022, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#ifndef WARNING
#define WARNING(T) PrintFormat("%s(%d)%s: %s", __FILE__, __LINE__, __FUNCTION__, (T))
#endif
//+------------------------------------------------------------------+