adafruit / RTClib

A fork of Jeelab's fantastic RTC Arduino library
MIT License
795 stars 705 forks source link

Replace `boolean` type by `bool` #259

Closed edgar-bonet closed 2 years ago

edgar-bonet commented 2 years ago

The boolean type is being phased out by the Arduino team in favor of the standard bool type. According to the Arduino documentation of boolean:

It’s recommended to instead use the standard type bool, which is identical.

This pull request replaces every occurrence of boolean by bool.