Skip to content

Commit

Permalink
Add newline to end of files in libs
Browse files Browse the repository at this point in the history
  • Loading branch information
lebdron committed Aug 6, 2017
1 parent 1139b57 commit 282bcbf
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion libs/crypto/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ target_link_libraries(crypto
add_library(lookup3
lookup3.h
lookup3.c
)
)
2 changes: 1 addition & 1 deletion libs/crypto/base64.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,4 @@ inline std::vector<unsigned char> base64_decode(std::string const &encoded_strin
}

return ret;
}
}
2 changes: 1 addition & 1 deletion libs/crypto/ed25519_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ namespace iroha {

return keypair_t{.pubkey = pub, .privkey = priv};
}
}
}
2 changes: 1 addition & 1 deletion libs/crypto/hash.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ namespace iroha {
return h;
}

} // namespace iroha
} // namespace iroha
2 changes: 1 addition & 1 deletion libs/datetime/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

# time64 is currently not used

add_subdirectory(time64)
add_subdirectory(time64)
2 changes: 1 addition & 1 deletion libs/datetime/time64/time64.c
Original file line number Diff line number Diff line change
Expand Up @@ -869,4 +869,4 @@ char *asctime64( const struct TM* date ) {
char *ctime64( const Time64_T* time ) {
tzset();
return asctime64(localtime64(time));
}
}
2 changes: 1 addition & 1 deletion libs/datetime/time64/time64.h
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ Time64_T timelocal64 (struct TM *);
};
#endif

#endif
#endif
2 changes: 1 addition & 1 deletion libs/datetime/time64/time64_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@ gmtime64_r() is a 64-bit equivalent of gmtime_r().
#define USE_SYSTEM_MKTIME
/* #define USE_SYSTEM_TIMEGM */

#endif /* TIME64_CONFIG_H */
#endif /* TIME64_CONFIG_H */
2 changes: 1 addition & 1 deletion libs/datetime/time64/time64_limits.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ static const struct tm SYSTEM_TIMEGM_MIN = {
};
#endif /* HAS_TIMEGM */

#endif /* TIME64_LIMITS_H */
#endif /* TIME64_LIMITS_H */
2 changes: 1 addition & 1 deletion libs/logger/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
add_library(logger STATIC logger.cpp)
target_link_libraries(logger
spdlog
)
)
2 changes: 1 addition & 1 deletion libs/logger/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ namespace logger {
return value ? "true" : "false";
}

} // namespace logger
} // namespace logger
2 changes: 1 addition & 1 deletion libs/timer/timer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ void waitTimer(int const sleepMillisecs) {
std::this_thread::sleep_for(std::chrono::milliseconds(sleepMillisecs));
}

} // namespace timer
} // namespace timer
2 changes: 1 addition & 1 deletion libs/timer/timer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ void waitTimer(int const sleepMillisecs);

} // namespace timer

#endif // IROHA_TIMER_HPP
#endif // IROHA_TIMER_HPP
2 changes: 1 addition & 1 deletion libs/transaction_utils/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ add_library(generator STATIC
target_link_libraries(generator PUBLIC
${PROTOBUF_LIBRARIES}
crypto
)
)
2 changes: 1 addition & 1 deletion libs/transaction_utils/generator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
namespace iroha {


}
}

0 comments on commit 282bcbf

Please sign in to comment.