MQL5Book/Include/Warnings.mqh
super.admin 1c8e83ce31 convert
2025-05-30 16:09:41 +02:00

11 lines
551 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
//+------------------------------------------------------------------+