Update clang format
Style only change
Change-Id: I41c97cbfb6a0ebf155a34166bc627f49a398442b
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/include/ADCSensor.hpp b/include/ADCSensor.hpp
index 2397093..fd248da 100644
--- a/include/ADCSensor.hpp
+++ b/include/ADCSensor.hpp
@@ -7,17 +7,17 @@
class ADCSensor : public Sensor
{
public:
- ADCSensor(const std::string &path,
- sdbusplus::asio::object_server &objectServer,
- std::shared_ptr<sdbusplus::asio::connection> &conn,
- boost::asio::io_service &io, const std::string &sensorName,
- std::vector<thresholds::Threshold> &&thresholds,
+ ADCSensor(const std::string& path,
+ sdbusplus::asio::object_server& objectServer,
+ std::shared_ptr<sdbusplus::asio::connection>& conn,
+ boost::asio::io_service& io, const std::string& sensorName,
+ std::vector<thresholds::Threshold>&& thresholds,
const double scaleFactor, PowerState readState,
- const std::string &sensorConfiguration);
+ const std::string& sensorConfiguration);
~ADCSensor();
private:
- sdbusplus::asio::object_server &objServer;
+ sdbusplus::asio::object_server& objServer;
boost::asio::posix::stream_descriptor inputDev;
boost::asio::deadline_timer waitTimer;
boost::asio::streambuf readBuf;
@@ -25,6 +25,6 @@
double scaleFactor;
PowerState readState;
void setupRead(void);
- void handleResponse(const boost::system::error_code &err);
+ void handleResponse(const boost::system::error_code& err);
void checkThresholds(void) override;
};