Add LIBRARY back to `make dbg`

This commit is contained in:
Kai Liu 2014-02-10 20:11:19 -08:00
parent 745c181e20
commit d4b789fdee
2 changed files with 2 additions and 2 deletions

View File

@ -144,7 +144,7 @@ endif # PLATFORM_SHARED_EXT
all: $(LIBRARY) $(PROGRAMS)
dbg: $(PROGRAMS)
dbg: $(LIBRARY) $(PROGRAMS)
# Will also generate shared libraries.
release:

View File

@ -489,7 +489,7 @@ DBImpl::SuperVersion* DBImpl::SuperVersion::Ref() {
bool DBImpl::SuperVersion::Unref() {
assert(refs > 0);
// fetch_sub returns the previous value of ref
// fetch_sub returns the previous value of yoeref
return refs.fetch_sub(1, std::memory_order_relaxed) == 1;
}