Skip to content
This repository has been archived by the owner on Dec 1, 2024. It is now read-only.

Commit

Permalink
Added LEVELDB_PLATFORM_UV to LevelDB port.h to fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Braydon Fuller committed Jun 16, 2015
1 parent f9fa2c0 commit 9ed4d81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deps/leveldb/leveldb-1.18.0/port/port.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
// Include the appropriate platform specific file below. If you are
// porting to a new platform, see "port_example.h" for documentation
// of what the new port_<platform>.h file must provide.
#if defined(LEVELDB_PLATFORM_POSIX)
#if defined(LEVELDB_PLATFORM_UV)
# include "port_uv.h"
#elif defined(LEVELDB_PLATFORM_POSIX)
# include "port/port_posix.h"
#elif defined(LEVELDB_PLATFORM_CHROMIUM)
# include "port/port_chromium.h"
Expand Down

0 comments on commit 9ed4d81

Please sign in to comment.