Skip to content

Commit

Permalink
Use <>'d includes for files that aren't mine
Browse files Browse the repository at this point in the history
  • Loading branch information
apage43 committed Feb 29, 2012
1 parent cb5144f commit 159e77a
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/btree_modify.cc
Expand Up @@ -3,7 +3,7 @@
#include <signal.h>

#include <libcouchstore/couch_btree.h>
#include "ei.h"
#include <ei.h>
#include "util.h"

#define CHUNK_THRESHOLD 1279
Expand Down
4 changes: 2 additions & 2 deletions src/couch_db.cc
Expand Up @@ -4,8 +4,8 @@
#include <libcouchstore/couch_db.h>

#include <libcouchstore/couch_btree.h>
#include "ei.h"
#include "snappy-c.h"
#include <ei.h>
#include <snappy-c.h>
#include "util.h"
#include "reduces.h"

Expand Down
4 changes: 2 additions & 2 deletions src/couch_file_read.cc
Expand Up @@ -3,8 +3,8 @@
#include <unistd.h>
#include <string.h>
#include <netinet/in.h>
#include "snappy-c.h"
#include "ei.h"
#include <snappy-c.h>
#include <ei.h>
#include "util.h"

#define SIZE_BLOCK 4096
Expand Down
2 changes: 1 addition & 1 deletion src/dbinfo.cc
Expand Up @@ -4,9 +4,9 @@
#include <inttypes.h>
#include <libcouchstore/couch_db.h>
#include <snappy-c.h>
#include <ei.h>
#include "util.h"
#include "endian.h"
#include "ei.h"

#ifndef DEBUG
#define error_pass(C) if((errcode = (C)) < 0) { goto cleanup; }
Expand Down
2 changes: 1 addition & 1 deletion src/reduces.cc
@@ -1,6 +1,6 @@
#include <stdlib.h>
#include <libcouchstore/couch_btree.h>
#include "ei.h"
#include <ei.h>

void by_seq_reduce (sized_buf* dst, nodelist* leaflist, int count)
{
Expand Down
2 changes: 1 addition & 1 deletion tests/testapp.c
Expand Up @@ -3,8 +3,8 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ei.h>
#include "macros.h"
#include "ei.h"

#define ZERO(V) memset(&(V), 0, sizeof(V))
#define SETDOC(N, I, D, M) setdoc(&testdocset.docs[N], &testdocset.infos[N], I, sizeof(I) - 1, \
Expand Down

0 comments on commit 159e77a

Please sign in to comment.