mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-04 03:11:43 +00:00
Replaced ::std with std for readability/consistency.
Change-Id: I65f9673c237d3513f99827e28963eb22ae9df0c2
This commit is contained in:
@@ -88,7 +88,7 @@ std::string ADXL345_I2C::GetSmartDashboardType() const {
|
||||
return "3AxisAccelerometer";
|
||||
}
|
||||
|
||||
void ADXL345_I2C::InitTable(::std::shared_ptr<ITable> subtable) {
|
||||
void ADXL345_I2C::InitTable(std::shared_ptr<ITable> subtable) {
|
||||
m_table = subtable;
|
||||
UpdateTable();
|
||||
}
|
||||
@@ -99,4 +99,4 @@ void ADXL345_I2C::UpdateTable() {
|
||||
m_table->PutNumber("Z", GetZ());
|
||||
}
|
||||
|
||||
::std::shared_ptr<ITable> ADXL345_I2C::GetTable() const { return m_table; }
|
||||
std::shared_ptr<ITable> ADXL345_I2C::GetTable() const { return m_table; }
|
||||
|
||||
Reference in New Issue
Block a user