From 10265aa56b22ac4f04e7ba08330138e4507534e4 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Fri, 15 Jul 2011 12:05:43 -0700 Subject: Directory restructure. Includes are now via upb/foo.h. Files specific to the protobuf format are now in upb/pb (the core library is concerned with message definitions, handlers, and byte streams, but knows nothing about any particular serializationf format). --- benchmarks/parsestream.upb_table.c | 8 ++++---- benchmarks/parsetostruct.upb_table.c | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'benchmarks') diff --git a/benchmarks/parsestream.upb_table.c b/benchmarks/parsestream.upb_table.c index a321010..a4022b1 100644 --- a/benchmarks/parsestream.upb_table.c +++ b/benchmarks/parsestream.upb_table.c @@ -2,10 +2,10 @@ #include "main.c" #include -#include "upb_def.h" -#include "upb_decoder.h" -#include "upb_strstream.h" -#include "upb_glue.h" +#include "upb/bytestream.h" +#include "upb/def.h" +#include "upb/pb/decoder.h" +#include "upb/pb/glue.h" static char *input_str; static size_t input_len; diff --git a/benchmarks/parsetostruct.upb_table.c b/benchmarks/parsetostruct.upb_table.c index 76cbf21..88f355d 100644 --- a/benchmarks/parsetostruct.upb_table.c +++ b/benchmarks/parsetostruct.upb_table.c @@ -1,11 +1,11 @@ #include "main.c" -#include "upb_def.h" -#include "upb_decoder.h" -#include "upb_strstream.h" -#include "upb_glue.h" -#include "upb_msg.h" +#include "upb/bytestream.h" +#include "upb/def.h" +#include "upb/msg.h" +#include "upb/pb/decoder.h" +#include "upb/pb/glue.h" static upb_msgdef *def; static size_t len; -- cgit v1.2.3