summarylogtreecommitdiffstats
path: root/remove_redundant_parentheses_from-posix-signals.adb.patch
blob: ee37832f8667073e084fdeeb30399f61119ef92d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- libsrc/threads/posix-signals.adb	2024-05-26 16:38:06.193420880 +1000
+++ libsrc/threads/posix-signals.adb-new	2024-05-26 16:41:23.022340791 +1000
@@ -923,8 +923,8 @@
 
    function Has_Data (Source : Signal_Source) return Boolean is
    begin
-      return (Source = From_Queue_Signal) or (Source = From_Async_IO)
-         or (Source = From_Message_Queue) or (Source = From_Timer);
+      return Source = From_Queue_Signal  or Source = From_Async_IO
+         or  Source = From_Message_Queue or Source = From_Timer;
    end Has_Data;
 
    ----------------