diff options
author | randomdan <randomdan@localhost> | 2011-01-25 16:44:45 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-01-25 16:44:45 +0000 |
commit | 1738ff3b6e0d75e5a3f86c1167a433e3b1f06a52 (patch) | |
tree | 4a661d40ab584f546dc17ab8b4a548d884a6d465 | |
parent | Fix Presenter's inheritance of CommonObjects (diff) | |
download | project2-1738ff3b6e0d75e5a3f86c1167a433e3b1f06a52.tar.bz2 project2-1738ff3b6e0d75e5a3f86c1167a433e3b1f06a52.tar.xz project2-1738ff3b6e0d75e5a3f86c1167a433e3b1f06a52.zip |
Fix #if check for UUID implementation
-rw-r--r-- | project2/uuid.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/uuid.h b/project2/uuid.h index b4d0e7f..9f7fbbe 100644 --- a/project2/uuid.h +++ b/project2/uuid.h @@ -4,7 +4,8 @@ #include <iostream> #include <boost/version.hpp> -#ifdef USINGOSSPUUID +#ifdef OSSP_UUID +# define USINGOSSPUUID # include <ossp/uuid++.hh> #else # if BOOST_VERSION < 104200 |