Tencent / phxpaxos

The Paxos library implemented in C++ that has been used in the WeChat production environment.
Other
3.36k stars 863 forks source link

third_party下autoinstall.sh脚本安装glog错误 #174

Open drusong opened 4 years ago

drusong commented 4 years ago
  1. 编译和安装: 原来脚本第149行 执行 ./autogen.sh 进行glog configure,而现版本glog已无脚本。 建议改成 ./configure
  2. Spelling. 项目实现清晰,但是在代码和注释中有比较多的拼写错误。 譬如:src/algorithm/learner_sender.h 47行: const bool Comfirm(const uint64_t llBeginInstanceID, const nodeid_t iSendToNodeID); 应为const bool Confirm(const uint64_t llBeginInstanceID, const nodeid_t iSendToNodeID);