Skip to content

Commit c21b1a6

Browse files
committed
Use INT32_MIN instead of INT_MIN for Linux compatibility
1 parent 29541b8 commit c21b1a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Plugins/LfpDisplayNode/LfpDisplayNode.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class LfpDisplayNode : public GenericProcessor
101101
void acknowledgeTrigger(int splitId);
102102

103103
/** Reads from int value from payload, returns if the value was found and is within bounds*/
104-
bool getIntField(DynamicObject::Ptr payload, String name, int& value, int lowerBound = INT_MAX, int upperBound = INT_MIN);
104+
bool getIntField(DynamicObject::Ptr payload, String name, int& value, int lowerBound = INT32_MAX, int upperBound = INT32_MIN);
105105

106106
/** Handles messages from other processors during acquisition*/
107107
void handleBroadcastMessage(String msg) override;

0 commit comments

Comments
 (0)