summaryrefslogtreecommitdiff
path: root/src/upb_inlinedefs.c
blob: 60863c42842b3b23a883215c9d2c992875749088 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * upb - a minimalist implementation of protocol buffers.
 *
 * This file, if compiled, will contain standalone (non-inlined) versions of
 * all inline functions defined in header files.  We don't generally use this
 * file since we use "static inline" for inline functions (which will put a
 * standalone version of the function in any .o file that needs it, but
 * compiling this file and dumping the object file will let us inspect how
 * inline functions are compiled, so we keep it around.
 *
 * Copyright (c) 2009 Joshua Haberman.  See LICENSE for details.
 */

#define INLINE
#include "upb_context.h"
#include "upb_enum.h"
#include "upb_msg.h"
#include "upb_parse.h"
#include "upb_table.h"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback