]> AND Private Git Repository - loba.git/blobdiff - sync_queue.h
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Replace NULL with nullptr.
[loba.git] / sync_queue.h
index d400578c802e4b3acc5f1f3af9156bbb1bc6ffe3..55d2e7949933e756efd571c30f28762b552c37c3 100644 (file)
@@ -18,7 +18,7 @@ public:
     ~sync_queue()
     {
         node* n = head_node;
-        while (n != NULL) {
+        while (n != nullptr) {
             node* prev = n;
             n = n->next;
             delete prev;
@@ -84,7 +84,7 @@ public:
 
 private:
     struct node {
-        node(): next(NULL) { }
+        node(): next(nullptr) { }
         T values[SYNC_QUEUE_BUFSIZE];
         node* next;
     };