瀏覽代碼

Remove GCC version check from song list inclusion (#14600)

Drashna Jaelre 3 年之前
父節點
當前提交
e1bf49fc97
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      quantum/audio/song_list.h

+ 3 - 5
quantum/audio/song_list.h

@@ -20,11 +20,9 @@
 
 #include "musical_notes.h"
 
-#if __GNUC__ > 5  // don't use for older gcc compilers since check isn't supported.
-#    if __has_include("user_song_list.h")
-#        include "user_song_list.h"
-#    endif  // if file exists
-#endif      // __GNUC__
+#if __has_include("user_song_list.h")
+#    include "user_song_list.h"
+#endif  // if file exists
 
 #define NO_SOUND