Browse Source

fix emacs tab mode (reported by george)

ndnSIM-v1
Mathieu Lacage 19 years ago
parent
commit
9f93b7fb53
  1. 2
      samples/main-callback.cc
  2. 2
      samples/main-packet.cc
  3. 2
      samples/main-simulator.cc
  4. 2
      samples/main-test.cc
  5. 2
      samples/main-trace.cc
  6. 2
      src/common/buffer.cc
  7. 2
      src/common/buffer.h
  8. 2
      src/common/callback-tracer.h
  9. 2
      src/common/data-writer.cc
  10. 2
      src/common/data-writer.h
  11. 2
      src/common/f-variable-tracer.h
  12. 2
      src/common/header.cc
  13. 2
      src/common/header.h
  14. 2
      src/common/packet.cc
  15. 2
      src/common/packet.h
  16. 2
      src/common/pcap-writer.cc
  17. 2
      src/common/pcap-writer.h
  18. 2
      src/common/si-variable-tracer.h
  19. 2
      src/common/stream-tracer-test.cc
  20. 2
      src/common/stream-tracer.h
  21. 2
      src/common/tags.cc
  22. 2
      src/common/tags.h
  23. 2
      src/common/trace-container.cc
  24. 2
      src/common/trace-container.h
  25. 2
      src/common/trailer.cc
  26. 2
      src/common/trailer.h
  27. 2
      src/common/ui-variable-tracer.h
  28. 2
      src/common/variable-tracer-test.cc
  29. 2
      src/core/callback-test.cc
  30. 2
      src/core/callback.h
  31. 2
      src/core/reference-list-test.cc
  32. 2
      src/core/reference-list.h
  33. 2
      src/core/system-file.h
  34. 2
      src/core/system-wall-clock-ms.h
  35. 2
      src/core/test.cc
  36. 2
      src/core/test.h
  37. 2
      src/core/unix-system-file.cc
  38. 2
      src/core/unix-system-wall-clock-ms.cc
  39. 2
      src/core/win32-system-file.cc
  40. 2
      src/core/win32-system-wall-clock-ms.cc
  41. 2
      src/simulator/event-id.cc
  42. 2
      src/simulator/event-id.h
  43. 2
      src/simulator/event-impl.cc
  44. 2
      src/simulator/event-impl.h
  45. 2
      src/simulator/nstime.h
  46. 2
      src/simulator/scheduler-factory.cc
  47. 2
      src/simulator/scheduler-factory.h
  48. 2
      src/simulator/scheduler-heap.cc
  49. 2
      src/simulator/scheduler-heap.h
  50. 2
      src/simulator/scheduler-list.cc
  51. 2
      src/simulator/scheduler-list.h
  52. 2
      src/simulator/scheduler-map.cc
  53. 2
      src/simulator/scheduler-map.h
  54. 2
      src/simulator/scheduler.cc
  55. 2
      src/simulator/scheduler.h
  56. 2
      src/simulator/simulator.cc
  57. 2
      src/simulator/simulator.h
  58. 2
      src/simulator/time.cc
  59. 2
      utils/bench-packets.cc
  60. 2
      utils/bench-simulator.cc
  61. 2
      utils/replay-simulation.cc
  62. 2
      utils/run-tests.cc

2
samples/main-callback.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
#include "ns3/callback.h"
#include <cassert>
#include <iostream>

2
samples/main-packet.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
#include "ns3/packet.h"
#include "ns3/header.h"
#include <iostream>

2
samples/main-simulator.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
#include "ns3/simulator.h"
#include "ns3/nstime.h"
#include <iostream>

2
samples/main-test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
#include "ns3/test.h"

2
samples/main-trace.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
#include "ns3/trace-container.h"
#include "ns3/ui-variable-tracer.h"
#include "ns3/callback-tracer.h"

2
src/common/buffer.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/buffer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/callback-tracer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/data-writer.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/data-writer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/f-variable-tracer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/header.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/header.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/packet.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/packet.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/pcap-writer.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/pcap-writer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/common/si-variable-tracer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/stream-tracer-test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/stream-tracer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/tags.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/tags.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/trace-container.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/trace-container.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/trailer.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/trailer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/common/ui-variable-tracer.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/common/variable-tracer-test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/core/callback-test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/core/callback.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/core/reference-list-test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/core/reference-list.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/core/system-file.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/system-wall-clock-ms.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/test.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/test.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/unix-system-file.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/unix-system-wall-clock-ms.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/win32-system-file.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/core/win32-system-wall-clock-ms.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/event-id.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/event-id.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/event-impl.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/event-impl.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/simulator/nstime.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/simulator/scheduler-factory.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/simulator/scheduler-factory.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/simulator/scheduler-heap.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* Copyright (c) 2005 Mathieu Lacage

2
src/simulator/scheduler-heap.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/scheduler-list.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/scheduler-list.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/scheduler-map.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/simulator/scheduler-map.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/simulator/scheduler.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
src/simulator/scheduler.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/simulator.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
src/simulator/simulator.h

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

2
src/simulator/time.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005,2006 INRIA
* All rights reserved.

2
utils/bench-packets.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
utils/bench-simulator.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
utils/replay-simulation.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2006 INRIA
* All rights reserved.

2
utils/run-tests.cc

@ -1,4 +1,4 @@
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:f -*- */
/* -*- Mode:C++; c-basic-offset:4; tab-width:4; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2005 INRIA
* All rights reserved.

Loading…
Cancel
Save