Преглед на файлове

Make an inline static so we can build with coverage enabled.

Nick Mathewson преди 6 години
родител
ревизия
1b93b065fc
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/lib/string/compat_ctype.h

+ 2 - 2
src/lib/string/compat_ctype.h

@@ -31,10 +31,10 @@ extern const uint8_t TOR_TOLOWER_TABLE[];
 #define TOR_TOLOWER(c) (TOR_TOLOWER_TABLE[(uint8_t)c])
 #define TOR_TOUPPER(c) (TOR_TOUPPER_TABLE[(uint8_t)c])
 
-inline int hex_decode_digit(char c);
+static inline int hex_decode_digit(char c);
 
 /** Helper: given a hex digit, return its value, or -1 if it isn't hex. */
-inline int
+static inline int
 hex_decode_digit(char c)
 {
   switch (c) {