Skip to content

Commit

Permalink
Use proper spelling for __FreeBSD__ pre-processor define.
Browse files Browse the repository at this point in the history
  • Loading branch information
glebius authored and john-preston committed Feb 8, 2022
1 parent 54e750c commit 3604a7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions linux_jemalloc_helper/linux_jemalloc_helper.cpp
Expand Up @@ -4,11 +4,11 @@
// For license and copyright information please follow this link:
// https://github.com/desktop-app/legal/blob/master/LEGAL
//
#ifdef __FREEBSD__
#ifdef __FreeBSD__
#include <malloc_np.h>
#else // __FREEBSD__

This comment has been minimized.

Copy link
@Facecasino

Facecasino Oct 22, 2022

How do you do this?

#else // __FreeBSD__
#include <jemalloc/jemalloc.h>
#endif // !__FREEBSD__
#endif // !__FreeBSD__

namespace {

Expand Down

0 comments on commit 3604a7f

Please sign in to comment.