Skip to content

Commit

Permalink
Fix wrong code auto indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
fspindle committed Feb 1, 2024
1 parent 3828644 commit ef03a1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmake/templates/vpConfig.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
#define VISP_VERSION_PATCH ${VISP_VERSION_PATCH}

// ViSP version with dots "${VISP_VERSION_MAJOR}.${VISP_VERSION_MINOR}.${VISP_VERSION_PATCH}".
#cmakedefine VISP_VERSION $ { VISP_VERSION }
#cmakedefine VISP_VERSION ${VISP_VERSION}

// ViSP version as an integer
#define VP_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
Expand All @@ -115,7 +115,7 @@
// Enable debug and trace printings
#cmakedefine VP_TRACE
#cmakedefine VP_DEBUG
#cmakedefine VP_DEBUG_MODE $ { VP_DEBUG_MODE }
#cmakedefine VP_DEBUG_MODE ${VP_DEBUG_MODE}

// ViSP library is either compiled static or shared
// Used to set declspec(import, export) in headers if required under Windows
Expand Down

0 comments on commit ef03a1b

Please sign in to comment.