Apply LambdaBodyIndentation to dbus-sensors
Per the transform being done in bmcweb, do the same for dbus-sensors.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: If21489607759f3cdf20fad17eede50fb4e228e5e
diff --git a/src/HwmonTempSensor.cpp b/src/HwmonTempSensor.cpp
index 6577739..22824e0 100644
--- a/src/HwmonTempSensor.cpp
+++ b/src/HwmonTempSensor.cpp
@@ -114,13 +114,12 @@
boost::asio::async_read_until(inputDev, readBuf, '\n',
[weakRef](const boost::system::error_code& ec,
std::size_t /*bytes_transfered*/) {
- std::shared_ptr<HwmonTempSensor> self =
- weakRef.lock();
- if (self)
- {
- self->handleResponse(ec);
- }
- });
+ std::shared_ptr<HwmonTempSensor> self = weakRef.lock();
+ if (self)
+ {
+ self->handleResponse(ec);
+ }
+ });
}
void HwmonTempSensor::restartRead()