Skip to content

Commit 7b7da5a

Browse files
committed
remove ctor semicolon
1 parent 141487f commit 7b7da5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/viam/sdk/components/private/power_sensor_client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PowerSensor::current from_proto(const GetCurrentResponse& proto) {
3838
PowerSensorClient::PowerSensorClient(std::string name, std::shared_ptr<grpc::Channel> channel)
3939
: PowerSensor(std::move(name)),
4040
stub_(PowerSensorService::NewStub(channel)),
41-
channel_(std::move(channel)) {};
41+
channel_(std::move(channel)) {}
4242

4343
PowerSensor::voltage PowerSensorClient::get_voltage(const ProtoStruct& extra) {
4444
return make_client_helper(this, *stub_, &StubType::GetVoltage)

0 commit comments

Comments
 (0)