Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parentheses in macros, and in general clean up quantum.h #5021

Merged
merged 14 commits into from
Jul 9, 2019
Merged
Prev Previous commit
Replace include guard with #pragma once
  • Loading branch information
vomindoraan committed Jul 9, 2019
commit ffb7b6292748764a8901250426156da5b1936f80
5 changes: 1 addition & 4 deletions quantum/quantum.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef QUANTUM_H
#define QUANTUM_H
#pragma once

#if defined(__AVR__)
#include <avr/pgmspace.h>
Expand Down Expand Up @@ -285,5 +284,3 @@ void led_set_user(uint8_t usb_led);
void led_set_kb(uint8_t usb_led);

void api_send_unicode(uint32_t unicode);

#endif