While () and (void) are synonymous in C++, we use () everywhere else so
stick to that pattern in examples.
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
13 files changed:
} /* namespace */
-int main(void)
+int main()
{
/*
* Assume a button connecting the pin to ground, so pull it up and
} /* namespace */
-int main(void)
+int main()
{
/*
* Names are not guaranteed unique, so this finds the first line with
} /* namespace */
-int main(void)
+int main()
{
::gpiod::chip chip(chip_path);
auto info = chip.get_info();
} /* namespace */
-int main(void)
+int main()
{
auto chip = ::gpiod::chip(chip_path);
auto info = chip.get_line_info(line_offset);
} /* namespace */
-int main(void)
+int main()
{
auto request = ::gpiod::chip(chip_path)
.prepare_request()
} /* namespace */
-int main(void)
+int main()
{
auto request = ::gpiod::chip(chip_path)
.prepare_request()
} /* namespace */
-int main(void)
+int main()
{
/* request the line initially as an input */
auto request = ::gpiod::chip(chip_path)
} /* namespace */
-int main(void)
+int main()
{
::gpiod::line::value value = ::gpiod::line::value::ACTIVE;
} /* namespace */
-int main(void)
+int main()
{
::gpiod::line::values values = { ::gpiod::line::value::ACTIVE,
::gpiod::line::value::ACTIVE,
} /* namespace */
-int main(void)
+int main()
{
::gpiod::chip chip(chip_path);
} /* namespace */
-int main(void)
+int main()
{
auto request =
::gpiod::chip(chip_path)
} /* namespace */
-int main(void)
+int main()
{
/*
* Assume a button connecting the pin to ground, so pull it up and
} /* namespace */
-int main(void)
+int main()
{
auto request =
::gpiod::chip(chip_path)