Skip to content

Commit

Permalink
Merge pull request #356 from gidden/warn
Browse files Browse the repository at this point in the history
adding exp warning to fuelfab
  • Loading branch information
mbmcgarry committed May 22, 2015
2 parents 3f38e3e + effd7a2 commit ac2abaf
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/fuel_fab.cc
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,11 @@ class TopupConverter : public cyclus::Converter<cyclus::Material> {
};

FuelFab::FuelFab(cyclus::Context* ctx)
: cyclus::Facility(ctx), fill_size(0), fiss_size(0), throughput(0) {}
: cyclus::Facility(ctx), fill_size(0), fiss_size(0), throughput(0) {
cyclus::Warn<cyclus::EXPERIMENTAL_WARNING>(
"the FuelFab archetype "
"is experimental");
}

void FuelFab::EnterNotify() {
cyclus::Facility::EnterNotify();
Expand Down

0 comments on commit ac2abaf

Please sign in to comment.