浏览代码

Remove default constructor from i2c also

doc
Christos Houtouridis 5 年前
父节点
当前提交
19f6991a83
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      include/utl/com/i2c_bb.h

+ 2
- 2
include/utl/com/i2c_bb.h 查看文件

@@ -65,7 +65,7 @@ namespace utl {
//! \brief A default destructor, allow destructor from derived only
~i2c_bb_i () noexcept = default;
//! \brief A default constructor
i2c_bb_i (uint32_t clk =100000) noexcept
i2c_bb_i (uint32_t clk) noexcept
: usec_ {1000000/(2*clk)} { }
//!@}
@@ -247,7 +247,7 @@ namespace utl {
//!@{
protected:
//! \brief Constructor
i2c_bb_i (uint32_t clk =100000) noexcept
i2c_bb_i (uint32_t clk) noexcept
: usec_ {1000000/(2*clk)} { }
//! \brief Virtual destructor
virtual ~i2c_bb_i () noexcept = default;


正在加载...
取消
保存