From e1e52c706ac651239957503d2fc6ebbbb731690d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 16 Jul 2020 11:52:51 +0200 Subject: [PATCH] term: remove unused struct definition 'rgb' --- terminal.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/terminal.h b/terminal.h index 4d5f717b..c88bad2f 100644 --- a/terminal.h +++ b/terminal.h @@ -19,8 +19,6 @@ #define likely(c) __builtin_expect(!!(c), 1) #define unlikely(c) __builtin_expect(!!(c), 0) -struct rgb { float r, g, b; }; - /* * Note: we want the cells to be as small as possible. Larger cells * means fewer scrollback lines (or performance drops due to cache